How do i open another form

  • Thread starter Thread starter Errol Kemp
  • Start date Start date
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
 
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"
 
Back
Top