Use combo box to open other forms

T

Tim

Hi, I am using Access 2003; please tell me how to design a form that uses a
combo box to open other forms when the form name appears in the field and a
submit command button is selected.
 
S

strive4peace

Hi Tim,

'~~~~~~
if isnull(me.combo_controlname) then exit sub

DoCmd.OpenForm combo_controlname
'~~~~~~

this would go on the Click event of the command button as code behind
the form


Warm Regards,
Crystal
*
:) have an awesome day :)
*
MVP Access
Remote Programming and Training
strive4peace2006 at yahoo.com
*
 
Top