jimmay
01-06-2008, 01:23 AM
Been a while since i did vb6 stuff
with a string array, is it possible to show the whole array at once?
ie:
Dim j(2) as string
j(0) = "h"
j(1) = "e"
j(3) = "y"
msgbox j
Yields an error, but i would like it to show "hey" - also, this is an inefficient way, as i assume each element of the array might be occupying the amount of memory a string does. any such way to do a character? Maybe byte?
with a string array, is it possible to show the whole array at once?
ie:
Dim j(2) as string
j(0) = "h"
j(1) = "e"
j(3) = "y"
msgbox j
Yields an error, but i would like it to show "hey" - also, this is an inefficient way, as i assume each element of the array might be occupying the amount of memory a string does. any such way to do a character? Maybe byte?