Help me!!!

BlitzPlus Forums/BlitzPlus Programming/Help me!!!

William Drescher(Posted 2006) [#1]
How do I save text to a file from a text area (createtextarea(...))?

Any help would be nice!
Thanks


Andres(Posted 2006) [#2]
file% = writefile("myfile.txt")
for i = 0 to len(textareatext(textarea%)) - 1
writebyte file, asc(mid$(textareatext(textarea%), i, 1))
next
closefile file%



William Drescher(Posted 2006) [#3]
Thanks


William Drescher(Posted 2006) [#4]
If anyone else knows how to open one too, that would help me alot!