Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Copy records on screen to text file
Message
From
31/03/2000 13:05:41
Brad Stickley
Parker Pneumatic Div. North America
Wake Forest, North Carolina, United States
 
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00353388
Message ID:
00353476
Views:
15
>>>>>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)
>>
>>
>>This works fine. One small question. I changed the Append to .F. to create a new file and FP askes whether I want to overwrite the old file. Is there any way to not have this come up?
>>
>>Thanks again!
>
>
>SET SAFETY OFF then SET SAFETY OFF right after
>
>or delete file just before.
>
>HTH
>
>Jeff



Thanks Bret, Michael and Jeff for the help. It is working great!!!

Brad.
He is there and He is not Silent.
Previous
Reply
Map
View

Click here to load this message in the networking platform