Keeping track of Global variables

S

Stuart

If I declare a Global variable, then I believe I'm
correct in saying that it will not be displayed in the
Locals window.

If so, then when debugging, how best to keep track
of its' value, please?

Regards.
 
J

Jan Karel Pieterse

Hi Stuart,
If I declare a Global variable, then I believe I'm
correct in saying that it will not be displayed in the
Locals window.

If so, then when debugging, how best to keep track
of its' value, please?

You can expand the tree of the entire project by clicking the plus sign
to the left of it (in the locals window), so it shows you all of the
projects objects and global variables. Or you can of course add a watch
to a few variables by rightclicking them and selecting add watch.

Regards,

Jan Karel Pieterse
Excel MVP
www.jkp-ads.com
 
S

Stuart

Many thanks.

Regards.

Jan Karel Pieterse said:
Hi Stuart,


You can expand the tree of the entire project by clicking the plus sign
to the left of it (in the locals window), so it shows you all of the
projects objects and global variables. Or you can of course add a watch
to a few variables by rightclicking them and selecting add watch.

Regards,

Jan Karel Pieterse
Excel MVP
www.jkp-ads.com
 
Top