FILE READ TEXT: Difference between revisions

From Macros Wiki
Jump to navigationJump to search
Mikeo (talk | contribs)
No edit summary
Mikeo (talk | contribs)
No edit summary
 
Line 5: Line 5:


|param1=<file Number>|param1_desc={{file Number}}
|param1=<file Number>|param1_desc={{file Number}}
|param2=<string variable>|param2_desc=String variable name
|param2=<string variable>|param2_desc={{parameter_variable_string_name}} the line of text.
}}
}}



Latest revision as of 17:26, 13 January 2011

Up

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