HI Clay,
I am facing one issue on reading data from the file and assign the value in the dialog box, I have one text.csv file which have data like
| Start when host application starts | on |
| Show splash screen | off |
| CurrentProfile | 1 |
I am not able to read the data line by line , I have written just like below
local path,line;
path = open("D:/Test/test.csv","r+");
response(getline(path, line)) // getting null even though file contain three rows.
while (getline(path, line) ) {
// doing some thing.
}
could you please suggest on this.
Thanks,
Prashant