I need to declare a variable number of strings to use in some coding and wanted to declare them in a loop - how can i do this.
I tried:
intImagesWide = 3
Do Until i = intImagesWide
strimage = "strImage" & i
pthimage = "pthImage" & i
Dim strimage
Dim pthimage
i = i + 1
Loop
But it does not work. Any help please.
I tried:
intImagesWide = 3
Do Until i = intImagesWide
strimage = "strImage" & i
pthimage = "pthImage" & i
Dim strimage
Dim pthimage
i = i + 1
Loop
But it does not work. Any help please.