How can I make a form a model form for my application? Like how a message box and be set to vbApplicationModal.
Printable View
How can I make a form a model form for my application? Like how a message box and be set to vbApplicationModal.
Try this:
'frmAbout will be always on the top of MDIMain
frmAbout.Show vbModal, MDIMain
Vlad