In my form I have three StringEdit
controls.
I have to fill each Control with values.
Is it possible to use while select
for all these controls and to fill them?
I have this code:
StringEdit1.text(strFmt("value"));
StringEdit2.text(strFmt("value"));
StringEdit3.text(strFmt("value"));
But I would not like to repeat the code for each Control.
Is it possible, to use a code that looks like the one for the Record , something like:
getNext()
, getFirst()
, etc.
This filling action should start in the form's init
method.
Thanks for your time,
Enjoy