Access array variable from VBA
Hi
Is it not possible to access an array variable at top level from VBA and use SubItem?
I have a variable testarray with Array Dim 1: 4
In VBA:
VBA Code:
Dim var As Variable
Set var = ThisProject.Variables.Item("testarray")
var is Nothing
When I change to:
VBA Code:
Dim var As Variable
Set var = ThisProject.Variables.Item("testarray[0]")
var is not Nothing
6.22 SP1 Build 8
Regards
This is a migrated post! Originally posted on 10.03.2010 by user mvj. Please be aware that information can be outdated.