-
Disabling a Window...
Hi Guys,
I've a doubt in disabling a window. For example when a message box is displayed you cannot do anything in the window from where the message box fired. when you forcibly try to do anything in that window, then the message box window flashes twice or thrice. How can i achieve this. I tried Me.Enabled=false but I got faulty results from it. Can anybody help me.
-
The message box is modal. To make your form acct as a MessageBox you need to show it like this:
Code:
FormName.Show vbModal
-
Thank you Vlatko...
Hi Vlatko,
Thanks for ur tip. I'm yet to try it. Anyway thanks for ur Post.