Buttons

  • Thread starter Thread starter greg
  • Start date Start date
G

greg

I usually use a switchboard to open forms etc, but I want to learn how to
use command buttons so I decided to try. What I cannot figure out is how
to open a form in edit mode, like on the switchboard. I can open the form
in add mode, but what do I need to type in the On Click Event Procedure to
make it open up to the first record.

Greg
The Oft Access Confused
 
DoCmd.OpenForm stDocName, , , , acFormEdit
where stDocName is the name of the form to open.
 
Back
Top