I have a form which can be set to .Enabled = false;. The client still might click on it by accident which can turn out to be very annoying since every time you click on it you will get this ding sound. I was wondering whether it’s possible to disable that or not.
Share
Instead of setting
Enableto false, you can hide the whole title bar with those two lines of code:This will result in user not being able to move the window, you can store the original title then restore it later if you want.