I am trying to export the value of some fields to a text file. I need each value to start on a new line. I am using the following code:
-----------------------
textbox1.text = textbox2.text & chr(13) & textbox3.text & chr(13).....
FileOpen(1,"c:\test.txt",OpenMode.Output)
Print(1,textbox1.text)
FileClose(1)
-----------------------
On opening the text file the information looks like this:
--------------
abc........
--------------
How do I get it to save as:
a
b
c
.......
-----------------------
textbox1.text = textbox2.text & chr(13) & textbox3.text & chr(13).....
FileOpen(1,"c:\test.txt",OpenMode.Output)
Print(1,textbox1.text)
FileClose(1)
-----------------------
On opening the text file the information looks like this:
--------------
abc........
--------------
How do I get it to save as:
a
b
c
.......