I have a problem!
This file has a simple project that calls an A string.
The string is declared like this: Private A() as String.
When I want to use it I do:
ReDim A(1)
A(1) = "Arie"
Print A(1)
Goes well! But then, when I try this:
ReDim A(2)
A(2) = "Ball"