-1
Next, I have a timer that fills 2 fields in a webbrowser, the same makes the following function...
var
pega : string;
begin
pega := Listaimportados.Items[i];
I := i +1
nome.text := Copy(pega, 0, 10);
Webbrowser1.OleObject.Document.all.Item('login', 0).value := nome.text;
in this it goes repeating the action every 4 seconds, as you can see the i+1 jumps to the next line, which in this case is imported in imported lists(listbox).
however I have a problem, if I insert less than one item in the listbox(imported lists) it starts giving error, list of Bounds, how to solve?
What was I supposed to do when the last line came?
– EProgrammerNotFound
Stop timer in timer1.enabled case := false;
– Fake