M
Monte0682
Hello when I declare an array in function called initialize like this:
ArrayA (0)="something"
it is remembered...
if I call ArrayA(0) in another function is knows the value is
something
....
Now I tried declaring an array like this:
Dim ArrayA as Variant
ArrayA=array("something")...
when I call it in another function it shows blank for ArrayA(0)...
What I am doing wrong?
ArrayA (0)="something"
it is remembered...
if I call ArrayA(0) in another function is knows the value is
something
....
Now I tried declaring an array like this:
Dim ArrayA as Variant
ArrayA=array("something")...
when I call it in another function it shows blank for ArrayA(0)...
What I am doing wrong?