reading from file
Moderators: Dorian (MJT support), JRL
reading from file
any ideas on making a macro readinglines from a text file and then typing them into dialog box, one at a time ?
Something along these lines
Let>k=1
Label>start
ReadLn>c:\temp\test.txt,k,line
If>line=##EOF##,finish
[PLACE TEXT INTO DIALOG BOX HERE]
Let>k=k+1
Goto>start
Label>finish
Can you be more specific? A dialog box you create or one from another program? Is this like a data entry thing where you put in one value, hit enter, wait till it completes, repeat?
Label>start
ReadLn>c:\temp\test.txt,k,line
If>line=##EOF##,finish
[PLACE TEXT INTO DIALOG BOX HERE]
Let>k=k+1
Goto>start
Label>finish
Can you be more specific? A dialog box you create or one from another program? Is this like a data entry thing where you put in one value, hit enter, wait till it completes, repeat?