Creating Buttons

  • Thread starter Thread starter Ty
  • Start date Start date
T

Ty

Does anyone know how to create "save", "delete", "quit",
etc. buttons. I know how to create buttons, just to know
how to make them to these various items as above.

Thanks !

Ty
 
Ty said:
Does anyone know how to create "save", "delete", "quit",
etc. buttons. I know how to create buttons, just to know
how to make them to these various items as above.

Just make sure the wizard option is turned on when you drop the new Command Button on
your form. The command button wizard has options for all of those operations.

Else use...

DoCmd.Runcommand acCmdSaveRecord
or
Me.Dirty = False

DoCmd.RunCommand acCmdDeleteRecord

DoCmd.Quit
 
Back
Top