-
how do u save to a file without the enter key being pressed at the end. It adds i more line than nedded to the text file and the computer is having problems because i'm using the textbox to load file by that name and the computer can't find a nothing file name.
-
filebox
use a (filebox) not a textbox to list your files...under components, select it, add it and use it..
not sure exactly what your are after..why do you even
have to hit enter to save a file unless it defaults to
some click event.
-
Hi,
I know exactly what your talking about. You need to append a ; to the end of your variable in your print statement
stringData="sfasdfasdfasdfasdfasdf"
open "C:\TEXT.TXT" for output as #1
print #1,stringData;
close #1
appending the ; will stop the unwanted carriage return
-
You would like to open your file for Append if you want to add information at its end.