VinceC
Newcomer
I have declared 2 variables exactly the same way:
In one module, I redimension qx12:
In another module, I redimension wx12:
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.
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.