M matnhouse New member Local time Today, 18:32 Joined Apr 21, 2006 Messages 6 Apr 21, 2006 #1 it sound really stupid but I am having problems on open. I have a main input page for the database I am creating but when I open it up it brings up previously inputted data. Any ideas on this?
it sound really stupid but I am having problems on open. I have a main input page for the database I am creating but when I open it up it brings up previously inputted data. Any ideas on this?
wazz Super Moderator Local time Tomorrow, 02:32 Joined Jun 29, 2004 Messages 1,704 Apr 21, 2006 #2 Hi. Code: Private Sub Form_Open(Cancel As Integer) DoCmd.GoToRecord , , acNewRec End Sub (?) is it an unbound form? perhaps Me.Undo will do what you need? Last edited: Apr 21, 2006
Hi. Code: Private Sub Form_Open(Cancel As Integer) DoCmd.GoToRecord , , acNewRec End Sub (?) is it an unbound form? perhaps Me.Undo will do what you need?
M matnhouse New member Local time Today, 18:32 Joined Apr 21, 2006 Messages 6 Apr 21, 2006 #3 Thanks Thank you very much, this worked a treat