Opens a text file to read or write. This is the easiest way to do it.
Opens a text file to read or write. This is the easiest way to do it.
Rate Opens a text file to read or write. This is the easiest way to do it.
(1(1 Vote))
'To read from a file:
Open "C:/Data.txt" for input as #1
Input #1, x
Close #1
'Now to write to a text file
Open "C:/Data.txt" for Output as #1
write #1, "This is a test"
Close #1
Opens a text file to read or write. This is the easiest way to do it. Comments
No comments yet — be the first to post one!
Post a Comment