D
Debbie
Hi everyone,
I have an AfterUpdate event on my form and in that event I have the following:
If AppointmentType = 'Routine' then
Resp = MsgBox("Do you want to email?",vbYesNo,"Input Needed!")
If Resp = 7 then
Exit Sub
Else
proceed.....
End if
End if
The problem is that the MsgBox is flashed so quickly on the screen, the user
can barely see it let alone respone to it. How do I temporarily suspend
the execution so that this prompt can be displayed and the user can respond?
Thank you very much.
Debbie
I have an AfterUpdate event on my form and in that event I have the following:
If AppointmentType = 'Routine' then
Resp = MsgBox("Do you want to email?",vbYesNo,"Input Needed!")
If Resp = 7 then
Exit Sub
Else
proceed.....
End if
End if
The problem is that the MsgBox is flashed so quickly on the screen, the user
can barely see it let alone respone to it. How do I temporarily suspend
the execution so that this prompt can be displayed and the user can respond?
Thank you very much.
Debbie