Search results for query: *

  1. aaronmchale

    Question VS 2010 WebBrowserControl Prevent File Downloads

    I found this code that is supposed to prevent the user from downloading files: Private Sub WebBrowser_Navigating(ByVal sender As Object, ByVal e As System.Windows.Forms.WebBrowserNavigatingEventArgs) Dim HTTPRequest As System.Net.WebRequest =...
  2. aaronmchale

    Question Web Browser New Window In Tab Control WebBrowserNewWindow Error

    Thanks for that, I have actually fixed it (or from what I can tell I have), I looked at what the normal handler configuration is for a web browser opening in a new window, it seems at the private sub it should be system.componentmodel.canceleventargs, lets see if it works in practice. Thanks Aaron
  3. aaronmchale

    Question Web Browser New Window In Tab Control WebBrowserNewWindow Error

    Ah yes, thanks for that, although that doesnt seem to fix it :(, I was getting this error before I added the private sub. Help? Thanks Aaron
  4. aaronmchale

    Question Web Browser New Window In Tab Control WebBrowserNewWindow Error

    I am making a web browser for a Kiosk system that uses a tab control to display web pages, the user can add and remove tabs. When a new tab is created it creates a new web browser using: Dim newbrowser As New WebBrowser In the AddWebTab private sub, which is called when the users adds a tab. I...
Back
Top