Custom Input Box

M

mcgj

I have a function that calls a form to get input from the user. I want the
function to wait until the user enters data and hits the ok button before
proceeding.

Thanks for the help.
 
R

RoyVidar

mcgj said:
I have a function that calls a form to get input from the user. I
want the function to wait until the user enters data and hits the ok
button before proceeding.

Thanks for the help.

If you're talking about halting code execution until this form is
closed, try opening it with the acDialog as windowmode

docmd.openform "myform", , , , , acDialog
 
I

i_takeuti

mcgj said:
I have a function that calls a form to get input from the user. I want the
function to wait until the user enters data and hits the ok button before
proceeding.

Thanks for the help.
 
Top