D
Douglas
I have a place in my database where I want to calm the
user so I put up a please wait form. I am doing it
because it makes a better feel in a transition I am making
to another form. Then I close the Please Wait form when
the next form opens. Currenly I am doing this.
DoCmd.OpenForm "PleaseWait"
Dim vWait
Do Until vWait > 10000000
vWait = vWait + 1
Loop
DoCmd.OpenForm "Next Form" 'Close PleaseWait on OnOpen.
This is weak. How do I count seconds so the wait is
always consistent versus counting numbers.
Thank you for your help.
Douglas
user so I put up a please wait form. I am doing it
because it makes a better feel in a transition I am making
to another form. Then I close the Please Wait form when
the next form opens. Currenly I am doing this.
DoCmd.OpenForm "PleaseWait"
Dim vWait
Do Until vWait > 10000000
vWait = vWait + 1
Loop
DoCmd.OpenForm "Next Form" 'Close PleaseWait on OnOpen.
This is weak. How do I count seconds so the wait is
always consistent versus counting numbers.
Thank you for your help.
Douglas