what the following statment mean?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sara ali alali
    New Member
    • Aug 2010
    • 4

    what the following statment mean?

    Dim tags As HtmlElementColl ection = WebBrowser1.Doc ument.All
  • Joseph Martell
    Recognized Expert New Member
    • Jan 2010
    • 198

    #2
    It declares a variable named "tags" as a reference to an HtmlElementColl ection type and then sets that variable to reference the collection of tags that is returned by WebBrowser1.Doc ument.All

    Comment

    Working...