I have run out of available parameters.
In an effort to get round this GDL limitation I have tried using a parameter as a simple array, with four possble values, thereby using one parameter instaed of four!!
My problem is that these values are, ideally, boolean (checkboxes), and I cannot get them to appear via the Interface script, no matter what I do. I don't need any associated pictures in the interface, and the checkboxes are 'independent' inasmuchas none affects another, and the result I want is not appropriate for drop-down boxes etc. I also want to avoid the need for the user to have to enter a value, if at all possible.
I understand the process (I think):
UI_INFIELD "checkbox[1]" 100,100,14,14
UI_INFIELD "checkbox[2]" 100,116,14,14
... and so on.
I've tried a loop, thus:
FOR j = 1 TO 4
param="checkbox["+Str(j,1,0)+"]"
UI_INFIELD param 100,84+j*16,14,14
NEXT j
Neither works.
Am I on a Fool's Errand, or does someone really knowledgeable and helpful know how to overcome this little difficulty?
BTW: it is not possible for me to re-engineer the object - I didn't originate the scripts, and I don't have full acces to all the associated Macros.