System.Windows.Forms.WebBrowser

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mici8
    New Member
    • Mar 2009
    • 1

    #1

    System.Windows.Forms.WebBrowser

    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.
  • Plater
    Recognized Expert Expert
    • Apr 2007
    • 7872

    #2
    You do it in the class library just the way you would in a forms application. What is the problem you are running into?

    Comment

    Working...