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"