How do i open another form

E

Errol Kemp

i have one form with a command button on it and i want to
have it so that when i click on the button it will go to a
form called FrmScannedNumberPlans...the name of the form
i'm trying to do this on is FrmTown
 
F

fredg

i have one form with a command button on it and i want to
have it so that when i click on the button it will go to a
form called FrmScannedNumberPlans...the name of the form
i'm trying to do this on is FrmTown

Code the command button click event:
DoCmd.OpenForm "FrmScannedNumberPlans"
 
Top