jstiegelmeyer
Programmer
I have an MDI child form called frmPlsWait. I show it in my project whenever an HourGlass isn't sufficient and the user needs an explanation of what he is waiting for.
There's only one problem, I can't use it if the calling code is in a Modal form.
If I load frmPlsWait as a Modal form, the calling code will pause. For instance, in the example below, if frmPlsWait is opened modally, we will never get to the move statement because the focus will be sitting on frmPlsWait. However, if the code below is in a modal form, then we can not load frmPlsWait in the modeless format.
frmPlsWait.ShowPlsWait "Renaming File..."
Move MyOldFile, MyNewFile
frmPlsWait.HidePlsWait
Any ideas would be greatly appreciated!
Thanks,
Jamie
There's only one problem, I can't use it if the calling code is in a Modal form.
If I load frmPlsWait as a Modal form, the calling code will pause. For instance, in the example below, if frmPlsWait is opened modally, we will never get to the move statement because the focus will be sitting on frmPlsWait. However, if the code below is in a modal form, then we can not load frmPlsWait in the modeless format.
frmPlsWait.ShowPlsWait "Renaming File..."
Move MyOldFile, MyNewFile
frmPlsWait.HidePlsWait
Any ideas would be greatly appreciated!
Thanks,
Jamie