Visual Basic Help
Hi,
I've been writing an app in visual basic and one of the functions makes another form visible. Is there any way to disable the calling form from receiving any input while this new form is visible (like it does when you have a msgbox on)
Cheers
Rob
I've been writing an app in visual basic and one of the functions makes another form visible. Is there any way to disable the calling form from receiving any input while this new form is visible (like it does when you have a msgbox on)
Cheers
Rob
Haven't done VB in ages, but something like:
Form.Show ShowStyle
Where ShowStyle gives you either a modal or modeless.
I think you need ShowStyle = 1 to make it modal, rather than what you have now which is modeless, which might be ShowStyle = 0, but you don't need it as the default is modeless.
God, hope I have the right. You'll be lucky if it is correct, because my usual answer is "Use Delphi Instead"

Cheers
Ian
Form.Show ShowStyle
Where ShowStyle gives you either a modal or modeless.
I think you need ShowStyle = 1 to make it modal, rather than what you have now which is modeless, which might be ShowStyle = 0, but you don't need it as the default is modeless.
God, hope I have the right. You'll be lucky if it is correct, because my usual answer is "Use Delphi Instead"

Cheers
Ian
Thread
Thread Starter
Forum
Replies
Last Post
crazyspeedfreakz
Wanted
17
Oct 5, 2015 07:19 PM
Pro-Line Motorsport
Car Parts For Sale
2
Sep 29, 2015 07:36 PM



