Edit Record Form - Brief Question

Stowslee

New member
Local time
Today, 05:15
Joined
Jan 10, 2012
Messages
4
I set up a form that allows me to view and edit records in a single table, the record I want to view is brought up using a combo box. When I first open the form however it displays the first record in the table, and if at all possible I would like to prevent this and start with the form completely clear.

I am sure this can be done, I am very new to Access and am not sure what settings I would have to change to make this happen. Any help in moving towards the right direction would be greatly appreciated.

Thank you in advance.
 
Last edited:
Go to a new record on opening the form:
Code:
[B]Private Sub Form_Load()
 DoCmd.GoToRecord , , acNewRec
End Sub[/B]
Linq ;0)>
 
Thank you for the quick response. Worked perfectly! Looks like I have some learning to do on the back-end programming. :)
 

Users who are viewing this thread

Back
Top Bottom