FILE READ TEXT

From Macros Wiki
Revision as of 17:23, 13 January 2011 by Mikeo (talk | contribs)
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>
String variable name

Example

FILE_OPEN "DataFile.txt", 2, READ
FILE_READ_TEXT 2, a$
For an example macro see Global_Local