2010-01-14 04:05 AM
2010-01-14 04:26 AM
2010-01-14 10:50 AM
for i = 1 to nGridLines if gridXPosition < 1 then gridXPosition = 1 endif if gridXPosition > 5 then gridXPosition = 5 endif next i parameters gridXPosition = gridXPositionI hope one of these methods will help you.
2010-01-14 12:54 PM
Unfortunately, there is no way to define values for array type parameters:(
2010-01-14 01:17 PM
2010-01-14 01:27 PM
2010-01-14 02:59 PM
2010-01-14 06:52 PM
Olivier wrote:Yes, you can do both.
Hello Zsolt,
by the way I was wondering if there was a way for using dynamic arrays as input parameters.
If I'm not clear:
I can define a dynamic array like this in the script: dim myArray[][]
But if I wanted that myArray to be available as a parameter input (in the UI) then I can't. I have to give its dimensions, and they can't be changed.
Is that right or is there a workaround?Olivier
2010-01-15 12:37 PM
You shouldn't put array parameters directly in the parameter list or in the interface anyway.Zsolt,
2010-01-15 01:44 PM