FILE READ TEXT

From Macros Wiki
Jump to navigationJump to search

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