Difference between revisions of "FILE WRITE TEXT"
From Macros Wiki
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | [[:Category:External_File_Handling|{{Up}}]] | ||
+ | |||
{{Command|syntax=FILE_WRITE_TEXT <file Number>, <text> | {{Command|syntax=FILE_WRITE_TEXT <file Number>, <text> | ||
− | |description= | + | |description=:Write a line of text from a file that was opened using the [[FILE_OPEN]] command. |
|param1=<file Number>|param1_desc={{file Number}} | |param1=<file Number>|param1_desc={{file Number}} | ||
− | |param2=<text>|param2_desc= | + | |param2=<text>|param2_desc=Text to write to the file. |
}} | }} | ||
===Example=== | ===Example=== | ||
− | :FILE_WRITE_TEXT | + | :FILE_OPEN "DataFile.txt", 7, WRITE |
+ | :FILE_WRITE_TEXT 7, a$ | ||
+ | :FILE_WRITE_TEXT 7, "Some Text" | ||
+ | :For an example macro see [[Global_Local]] | ||
[[Category:External_File_Handling]] | [[Category:External_File_Handling]] |
Latest revision as of 12:23, 13 January 2011
Command
- FILE_WRITE_TEXT <file Number>, <text>
- Write a line of text from a file that was opened using the FILE_OPEN command.
Parameters
- <file Number>
- File number, 1 to 10. You may have up to 10 files open at the same time.
- <text>
- Text to write to the file.
Example
- FILE_OPEN "DataFile.txt", 7, WRITE
- FILE_WRITE_TEXT 7, a$
- FILE_WRITE_TEXT 7, "Some Text"
- For an example macro see Global_Local