Roderick_E
Well-known Member
- Joined
- Oct 13, 2007
- Messages
- 2,051
Suppose I have undeclared variables called:
config1
config2
How can I make these dynamic in a FOR loop.
config1
config2
How can I make these dynamic in a FOR loop.
Code:
For x = 1 to 2
if [COLOR=#ff0000]"config" & x[/COLOR] = "something" then
'do something
endif
next x