View Single Post
  #2  
Old 10-08-2001, 04:49 PM
Cromoly
 
Posts: n/a
Default Re: Can some1 help me with VB?

Open App.Path & "thefile.txt" For Input As #1
while not EOF
  Input #1, buffer
  parse(buffer)
endw
Close #1

It's been a while but that should be somewhat correct. Try messing about with it until it works. Buffer should be a string.
Reply With Quote