reading Html file from visual basic

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • amit260906
    New Member
    • Sep 2006
    • 1

    #1

    reading Html file from visual basic

    Can anybody tell me how to read Html file from Visual basic.
  • LifeEquals42
    New Member
    • Jul 2006
    • 7

    #2
    Originally posted by amit260906
    Can anybody tell me how to read Html file from Visual basic.
    Do you just want to read the text of an html file you have stored locally?
    if so I would think you could just treat it as you would a text file

    using something like
    OPEN "c:\MyFile.html " FOR INPUT as #1
    Input #1, x
    CLOSE #1

    Comment

    Working...