H Hans Registered User. Local time Today, 22:24 Joined Feb 6, 2002 Messages 20 Feb 6, 2002 #1 We are having a tough time keeping entries from being overwritten in our new database. How best to open the form (data entry) to the first unwritten record, eliminating the hassle of clicking to the end each time they open it?
We are having a tough time keeping entries from being overwritten in our new database. How best to open the form (data entry) to the first unwritten record, eliminating the hassle of clicking to the end each time they open it?
D donbettis Old User Gone Astray Local time Today, 17:24 Joined Jan 23, 2001 Messages 103 Feb 6, 2002 #2 If I understand what you are wanting to do... You could place the following into the OnOpen Event of your form... DoCmd.GoToRecord , , acNewRec Hope this helps... Don
If I understand what you are wanting to do... You could place the following into the OnOpen Event of your form... DoCmd.GoToRecord , , acNewRec Hope this helps... Don
H Hans Registered User. Local time Today, 22:24 Joined Feb 6, 2002 Messages 20 Feb 7, 2002 #4 Thanks! Both do the trick!