C
Coby
Is there a way to pause my module and then resume (as part of the
subroutine itself)?
I want to stop the code and get the user's input via a combo list box
on a form, then resume the code where it left off once the user clicks
an ok button.
I basically want to have the same effect as the standard input box,
but using a form so I can utilize a combo list box
What I have been trying to do is:
Do While Not rstLumberOrder.BOF
If !InvalidDescription = <>"" Then
Application ???? pause???
DoCmd.OpenForm("SubstitutionChoices")
rstLumberOrder.MovePrevious
Loop
Then,
I want to resume the code looping when a button click even occurs from
the form that is open.
Is there any way of doing this or something to get me the equivalent?
Thanks in advance for any help.
Coby.
subroutine itself)?
I want to stop the code and get the user's input via a combo list box
on a form, then resume the code where it left off once the user clicks
an ok button.
I basically want to have the same effect as the standard input box,
but using a form so I can utilize a combo list box
What I have been trying to do is:
Do While Not rstLumberOrder.BOF
If !InvalidDescription = <>"" Then
Application ???? pause???
DoCmd.OpenForm("SubstitutionChoices")
rstLumberOrder.MovePrevious
Loop
Then,
I want to resume the code looping when a button click even occurs from
the form that is open.
Is there any way of doing this or something to get me the equivalent?
Thanks in advance for any help.
Coby.