Optimizing variable declarations [SOLVED]
Posted: Fri Apr 04, 2014 9:44 am
Hi to all,
I'm wondering if there is a way to optimize multiple variable declarations of the same type...
Let say I have to empty many fields with different names each; NOT like "fld01", "fld02", and so on, which I could instantiate by a repeat loop.
In few words, how can I avoid this:
I tried this without success:
Any idea around ?
I'm wondering if there is a way to optimize multiple variable declarations of the same type...
Let say I have to empty many fields with different names each; NOT like "fld01", "fld02", and so on, which I could instantiate by a repeat loop.
In few words, how can I avoid this:
Code: Select all
put empty into fld "myFld"
put empty into fld "myOtherFld"
put empty into fld "otherFld"
etc.
Code: Select all
put empty into fld "myFld" , "myOtherFld" , "otherFld"