I am trying to use
WebBrowser WebBrowser1 = new System.Windows. Forms.WebBrowse r();
in a class library.
I have a vb.net code in an application and i need to change to c# class Library.
I have this method:
Private Sub WebBrowser1_Doc umentCompleted( ByVal sender As System.Object, ByVal e As System.Windows. Forms.WebBrowse rDocumentComple tedEventArgs) Handles WebBrowser1.Doc umentCompleted
And i need to use also:
WebBrowser1.Url
WebBrowser1.Nav igate
How do I do it in class library? will all options be available?
An example will help.
Thank you.
WebBrowser WebBrowser1 = new System.Windows. Forms.WebBrowse r();
in a class library.
I have a vb.net code in an application and i need to change to c# class Library.
I have this method:
Private Sub WebBrowser1_Doc umentCompleted( ByVal sender As System.Object, ByVal e As System.Windows. Forms.WebBrowse rDocumentComple tedEventArgs) Handles WebBrowser1.Doc umentCompleted
And i need to use also:
WebBrowser1.Url
WebBrowser1.Nav igate
How do I do it in class library? will all options be available?
An example will help.
Thank you.
Comment