How do I make it so a user cannot access the form that does not have focus unless an event occurs on the form with focus?
Printable View
How do I make it so a user cannot access the form that does not have focus unless an event occurs on the form with focus?
Just set form.enabled = False ; it'll reject all user input on all controls until you're ready. Otherwise, make the form in front of it modal.
-John
Yes, modal is what I was looking for I couldn't remember thank you!!!