govindalopez
Programmer
- Dec 12, 2008
- 4
Hi,
Can anyone please help me on this. I want to place a value in the text property of a single line edit. The thing is that I have 10 single line edit's and I want to take the values from an array.
Basically what I need is something like this:
FOR x = 1 TO 10
sle_option(x).text = ls_array[x]
END FOR
The sle_option is a single line edit and the ls_array[] is a local string array.
When I try using this example I get a sintax error. Can anyone please help?
By the way I can´t use an IF or a CHOOSE CASE for this. Only a FOR or any other way to change between objects to insert in their text property a value.
Thanks.
Can anyone please help me on this. I want to place a value in the text property of a single line edit. The thing is that I have 10 single line edit's and I want to take the values from an array.
Basically what I need is something like this:
FOR x = 1 TO 10
sle_option(x).text = ls_array[x]
END FOR
The sle_option is a single line edit and the ls_array[] is a local string array.
When I try using this example I get a sintax error. Can anyone please help?
By the way I can´t use an IF or a CHOOSE CASE for this. Only a FOR or any other way to change between objects to insert in their text property a value.
Thanks.