all i want to do is save the text in text1. How can you do that?
Printable View
all i want to do is save the text in text1. How can you do that?
open "sometext.txt" for output as #1
print #1, text1.text
close#1
That will save the text?
that will save the text in a file. did you want to do something else?