Default to new record when form loads

Faction21

Registered User.
Local time
Today, 15:22
Joined
Oct 26, 2004
Messages
42
How do I defualt the form to a new record without using the DATA ENTRY option set to yes.
The Users will not be allowed to edit or delete the data after it is entered, they need a supervisor to do that, but they are allowed to add new records and view existing ones which is needed.

So is it possible to have a form default to new record when it loads with out restricting the from user viewing old records?

-Thanks
 
Code:
Private Sub Form_Load()
  DoCmd.GoToRecord , , acNewRec
End Sub
 
woot, thanks
 

Users who are viewing this thread

Back
Top Bottom