To clear things up:
how can i...
Expand|Select|Wrap|Line Numbers
- picture1.picture = array(1,1)
- picture2.picture = array(1,2)
- picture3.picture = array(2,1)
if i was to code it all manually i would have to write over 60 lines of pretty much the same thing. is there a way to do something like this:
Expand|Select|Wrap|Line Numbers
- i = 1
- Do While i <> 61
- Dim varName as String
- varName = "picture" & i
- 'varname translates to picture #x incrementally from 1
- varName.picture = array(1,1)
- i = i + 1
- Loop
`DanubeRS