Form Save Prompt

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an add to events form that loads a table 6 fields; I use combo boxes
to for four fields and two field that need direct input from user. When the
form loads now, fields populate with input from the table. I like all fields
to be blank on load and the user to click new record button and be prompted
to save before adding another record or closing the form. I do not want user
to edit on this form, I have an edit form that is launches when a report is
created. Can this be done?

Thanks
 
Hi,

Design the Form and enter the following on the Forms OnLoad Event

DoCmd.GoToRecord , , acNewRec

Each time your users opens a Form they will immediately go to a new record

HTH
Mark
 

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

Back
Top