Write and Read Text File with Simple COde
Write and Read Text File with Simple COde
Rate Write and Read Text File with Simple COde
(2(2 Vote))
open "c:\tes.txt" for output as #1
print #1,"Line 1"
print #1,"Line 2"
close #1
dim L1$
dim L2$
open "c:\tes.txt" for input as #1
input #1,L1$
input #1,l2$
close #1
msgbox l1$+vbcrlf+l2$
Write and Read Text File with Simple COde Comments
No comments yet — be the first to post one!
Post a Comment