I have a program that shows several different screens as it proceeds to scan for certain records. If it is known to probably run a long time the user can minimize the program and each following screen will honor that minimized state.
The problem is that when I go to return the screen to it's normal size the only option I get is 'Maximize' when I right-click. Left clicking on it doesn't do anything, it stays minimized.
No place in the program do I specifically minimize any of the dialogs.
None of the dialogs are child windows. The scanning progress dialog uses DS_CONTROL AND DS_CENTER so that it minimizes when it's parent does.
How do I minimize a long running program that displays several dialogs and when it gets to the results screen have a way for it to come back to normal size only when the user is ready to deal with it. Right now the only option is to right-click and select maximize.
Thanks,
Bob Mechler
The problem is that when I go to return the screen to it's normal size the only option I get is 'Maximize' when I right-click. Left clicking on it doesn't do anything, it stays minimized.
No place in the program do I specifically minimize any of the dialogs.
None of the dialogs are child windows. The scanning progress dialog uses DS_CONTROL AND DS_CENTER so that it minimizes when it's parent does.
How do I minimize a long running program that displays several dialogs and when it gets to the results screen have a way for it to come back to normal size only when the user is ready to deal with it. Right now the only option is to right-click and select maximize.
Thanks,
Bob Mechler
Comment