|
-
April 2nd, 2001, 07:52 AM
#1
File I/O
Hello,
Does anyone know how to do simple file i/o??
I would like to open a file for read and then parse it line by line.
Thanks in advance,
notacoder
-
April 2nd, 2001, 08:09 AM
#2
Re: File I/O
Open "c:\temp\temp.txt" For Input As #1 'to read from
Do While Not EOF(1)
Line Input #1, sLine
Loop
Close #1
Open "c:\temp\temp.txt" For Output As #1 'to write to
Print #1, txtLetter.Text
Close #1
Iouri Boutchkine
[email protected]
-
April 2nd, 2001, 08:32 AM
#3
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|