<div dir="ltr"><div>Hi All<br>I'm using Gecko1 componrnt in my application for mini browser. <br>It's works fine except when they is not network/internet connection, a window popup with no title with two buttons (one for OK and another for cancel).<br>
</div>I tried to prevent that with try..except..end; statement as above:<br><div><br>procedure Tfrm1.btnBrowserGoClick(Sender: TObject);<br>begin<br>  try<br>    GeckoBrowser.LoadURI(edtAddress.Text);<br>  except<br>     ShowMessage(ErrorComplaint + lisLineEnding + 'No Internet Connection.');<br>
  end;<br>end;<br><br><br></div><div>What can I do so that the window do not popup in case of no connection?<br><br></div><div>Thanks<br></div></div>