Y
yxq
Hello,
I want to popup a form to indicate doing a long time work,
when this form shown, anyting on main form are disabled until the popup form
closed.
**************************
Dim a as new frmTip
a.Show
myWork()
The main form can be changed in the code above.
**************************
Dim a as new frmTip
a.ShowDialog 'Stop here
myWork()
The code will stop at "a.ShowDialog", the code below will not run.
How to do a popup form to indicate doing a work?
Thank you
I want to popup a form to indicate doing a long time work,
when this form shown, anyting on main form are disabled until the popup form
closed.
**************************
Dim a as new frmTip
a.Show
myWork()
The main form can be changed in the code above.
**************************
Dim a as new frmTip
a.ShowDialog 'Stop here
myWork()
The code will stop at "a.ShowDialog", the code below will not run.
How to do a popup form to indicate doing a work?
Thank you