Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Copy records on screen to text file
Message
From
31/03/2000 12:21:28
Michael Dougherty
Progressive Business Publications
Malvern, Pennsylvania, United States
 
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00353388
Message ID:
00353422
Views:
13
>>each must be printed to a separate line, and the file must be created in a
>Also just in case you did not know CHR(13)+CHR(10) added to text sent to the STRTOFILE command will enter a carriage return line feed.
>STRTOFILE(txtbox1.Value+ ' ' + txtbox2.Value + CHR(13)+CHR(10),'c:\temp\file.qlp')

CRLF = chr(13) + chr(10)
outputfilename = "c:\temp\file.qlp"
writestring = txtbox1.value + CRLF + txtbox2.value + CRLF
StrToFile(writestring,outputfilename,.T.)

The third arguement is APPEND- i don't know if it's documented, because i looked for it and didn't find it, then just guessed. (BTW, the command can be done in one statement, but for the sake of explanation, i broke it up)
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform