Difference between revisions of "FILE READ TEXT"
From Macros Wiki
Line 5: | Line 5: | ||
|param1=<file Number>|param1_desc={{file Number}} | |param1=<file Number>|param1_desc={{file Number}} | ||
− | |param2=<string variable>|param2_desc= | + | |param2=<string variable>|param2_desc={{parameter_variable_string_name}} the line of text. |
}} | }} | ||
Latest revision as of 13:26, 13 January 2011
Command
- FILE_READ_TEXT <file Number>, <string variable>
- Read 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.
- <string variable>
- Name of string variable to be set to the line of text.
Example
- FILE_OPEN "DataFile.txt", 2, READ
- FILE_READ_TEXT 2, a$
- For an example macro see Global_Local