Question:
How can I read a one-line TXT file with a number in it?
Solution:
To do so, you must use the ReadFromFile() method.
For example:
dim var, tst
var = ReadFromFile(“D:\file.txt”)
tst = Real(var)
MessageBox(tst)
NOTE: In case you use the example above, don’t forget to create the TXT file.