Hi, How do I disable all the controls in a dialog window ? I know I could use EnableWindow(FALSE); but this doesnt seem like a good idea because now there is no way for the user to click "Ok" or "Cancel" button or press the "X" icon to exit. The dialog is like frozen.
What I am looking for is a way to disable all the controls in a dialog while providing some way for a user to exit.
Another solution is to do it manually by going through all the dialog controls and disabling them but this gets tedious. Any easy way ?
Thanks.