How can I start a second Form and let the Code 'wait' until the second form is closed (just like a Msgbox with Yes/No), in (ACAD) VBA there's a .ShowModal Property, in VB there's not.
Thanks for any suggestions... SMD
Printable View
How can I start a second Form and let the Code 'wait' until the second form is closed (just like a Msgbox with Yes/No), in (ACAD) VBA there's a .ShowModal Property, in VB there's not.
Thanks for any suggestions... SMD
VB Code:
Form1.Show vbModal
:)
tr0n:
huh, never knew that myself actually.
nice one :)
how did you ever show modal forms then? some crazy API stuff? :p
Actually none of my applications use multiple forms at the one time.
Generally, if there is a second form to be shown, its only as an options screen for the main form.
And then I would have all options for that form group into SSTabs or something similar.
The applications I design are wizards, so its one form to the next to the next - one at a time.