Problem viewing variable in Autos and Locals window

VinceC

Newcomer
Joined
May 30, 2003
Messages
15
Location
Ontario, Canada
I have declared 2 variables exactly the same way:

Visual Basic:
Public qx12(,,) As Double
Public wx12(,,) As Double

In one module, I redimension qx12:

Visual Basic:
ReDim qx12(a,b,c)

In another module, I redimension wx12:

Visual Basic:
ReDim wx12(a,b,c)

During code execution and then suspension I can see qx12 in the "Autos" and/or "Locals" window but NOT wx12. Does anyone know why?

Thx.
 
Back
Top