I wish a nice day to all.
I'd like to loop through collection of Project Manager windows on my VFP 7 IDE screen. They seem not to belong to _screen.forms collection and the only way how to "contact" them is by means of WVISIBLE, WTITLE and DE/ACTIVATE, HIDE commands.
My task was originally to deactivate all or some of these Project windows and restore them later.
I've found partial solutions with sequence
but the ambition to loop through them still persists.
Thanks for any suggestion.
Tom
I'd like to loop through collection of Project Manager windows on my VFP 7 IDE screen. They seem not to belong to _screen.forms collection and the only way how to "contact" them is by means of WVISIBLE, WTITLE and DE/ACTIVATE, HIDE commands.
My task was originally to deactivate all or some of these Project windows and restore them later.
I've found partial solutions with sequence
Code:
HIDE WINDOW all
….
SHOW WINDOW all,
Thanks for any suggestion.
Tom