Help me!!!
BlitzPlus Forums/BlitzPlus Programming/Help me!!!| 
 | ||
| How do I save text to a file from a text area (createtextarea(...))? Any help would be nice! Thanks | 
| 
 | ||
| 
file% = writefile("myfile.txt")
for i = 0 to len(textareatext(textarea%)) - 1
writebyte file, asc(mid$(textareatext(textarea%), i, 1))
next
closefile file%
 | 
| 
 | ||
| Thanks | 
| 
 | ||
| If anyone else knows how to open one too, that would help me alot! |