+
+
+
+
+
+
ERROR :/
+
Could not load the site/page!
+
+
1. Check your connection.
+ 2. Make sure that theres no firewall/antivirus blocking the conenction.
+
+
+
Back
+
+
+
+
+
+
+
diff --git a/WebBrowser/Xero Browser.csproj b/WebBrowser/Xero Browser.csproj
index 22370d1..c6c8b6f 100644
--- a/WebBrowser/Xero Browser.csproj
+++ b/WebBrowser/Xero Browser.csproj
@@ -331,6 +331,7 @@
Always
+
Always
@@ -342,6 +343,9 @@
Always
+
+ Always
+
Always
diff --git a/WebBrowser/frmBrowser.cs b/WebBrowser/frmBrowser.cs
index 2defa73..466ab03 100644
--- a/WebBrowser/frmBrowser.cs
+++ b/WebBrowser/frmBrowser.cs
@@ -4,6 +4,7 @@ using System.IO;
using System.Windows.Forms;
using Bunifu.Utils;
using CefSharp;
+using CefSharp.WinForms;
using EasyTabs;
using XeroBrowser.Properties;
// ReSharper disable PossibleNullReferenceException
@@ -13,7 +14,7 @@ namespace XeroBrowser
public partial class FrmBrowser : Form
{
private readonly Uri _fileUri;
- // Uri _fileUri2;
+ Uri _fileUri2;
public FrmBrowser()
{
InitializeComponent();
@@ -174,9 +175,10 @@ namespace XeroBrowser
private void chromiumWebBrowser1_LoadError(object sender, LoadErrorEventArgs e)
{
- // string filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "loaderror.html");
- // _fileUri2 = new Uri(filePath);
- // string fileUrl = _fileUri2.AbsoluteUri;
+ string filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "loaderror.html");
+ _fileUri2 = new Uri(filePath);
+ string fileUrl = _fileUri2.AbsoluteUri;
+ chromiumWebBrowser1.Load(fileUrl);
}
private void txtSearchOrUrl_KeyUp(object sender, KeyEventArgs e)