I have a for loop and I have to read parameters into variables, I will only show one parameter for simplicity.
Here is what I am trying to do
So then I will have 10 parameters:
strParam1Name = SomeValue
strParam2Name = SomeValue
until strParam10Name = SomeValue
Does anyone know how to do this?
Here is what I am trying to do
Code:
For i = 1 to 10
strParam + i + Name = SomeValue
Next
strParam1Name = SomeValue
strParam2Name = SomeValue
until strParam10Name = SomeValue
Does anyone know how to do this?