How to Read/Display Formatted Txt Files Contents in VB6

Just want to ask on how to read/display the contents of a formatted or multi-line text file in VB6?

Comments

  • A basic text file might be something like below if that's what you're after.

    [code]
    Dim fstr As String

    Open "path to file" For Input As #1

    Do While Not EOF(1)
    Line Input #1, fstr
    MsgBox fstr
    Loop

    Close #1
    [/code]
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion