J
jeh
A DoCmd.OpenForm statement occurs part way down my Access 2000
subroutine "Prcs". The opened form presents the user with some screen
info from which he/she must decide which of the two command buttons
"Continue" and "Quit" should be clicked. "Quit" sends execution
control elsewhere while "Continue" is designed to continue processing
within Prcs.
Sub Prcs
tested vb code ' Includes evaluation of "strCrit"
DoCmd.OpenForm "frmShowinfo", , , strCrit
more tested vb code
end sub
I've not found a way to stop control from passing straight through the
DoCmd statement on to "more tested vb code" without first requiring
the user to click on one or other of the form buttons. Could someone
please tell me the correct action here? I assume I've missed
something obvious.
TIA
John
subroutine "Prcs". The opened form presents the user with some screen
info from which he/she must decide which of the two command buttons
"Continue" and "Quit" should be clicked. "Quit" sends execution
control elsewhere while "Continue" is designed to continue processing
within Prcs.
Sub Prcs
tested vb code ' Includes evaluation of "strCrit"
DoCmd.OpenForm "frmShowinfo", , , strCrit
more tested vb code
end sub
I've not found a way to stop control from passing straight through the
DoCmd statement on to "more tested vb code" without first requiring
the user to click on one or other of the form buttons. Could someone
please tell me the correct action here? I assume I've missed
something obvious.
TIA
John