Creating Buttons

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
 
R

Rick Brandt

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top