Automate a Text box to open another form

  • Thread starter Thread starter Neil
  • Start date Start date
N

Neil

In the form, I created a text box that is populated when I click a combo box.

I need that if I click the text box, it will open another form. Can this be
done.

Need help.

Thank you
 
Put code in the text box's Click event:

Private Sub MyTextbox_Click()

DoCmd.OpenForm "SomeFormName"

End Sub
 
Back
Top