Hi there,
i have a txt file called gl.txt.
The value in the file are 1,2,5,6,8,....
Now , i want to open this file an read the values into a string "1,2,5..." , i defined the string as Liste.
I wrote the little Program below, but i doesent work. The compiler breaks with an error message : File-Input too long : 1,2,5...
def stream Custlist.
def var inFile as char no-undo.
def var Liste as char no-undo.
inFile = "c:\ana\gl.txt".
input from value(inFile).
set liste. /* may here is the error ? */
input close.
display liste.
Can anyone help me ?
Greets
make
i have a txt file called gl.txt.
The value in the file are 1,2,5,6,8,....
Now , i want to open this file an read the values into a string "1,2,5..." , i defined the string as Liste.
I wrote the little Program below, but i doesent work. The compiler breaks with an error message : File-Input too long : 1,2,5...
def stream Custlist.
def var inFile as char no-undo.
def var Liste as char no-undo.
inFile = "c:\ana\gl.txt".
input from value(inFile).
set liste. /* may here is the error ? */
input close.
display liste.
Can anyone help me ?
Greets
make