Form_open & Form & Current Problems

JayAndy

Registered User.
Local time
Today, 18:10
Joined
Jan 13, 2016
Messages
31
Hi

I am trying to get a form to open a new record when its opens but the Form current is running after the open and is not opening a new record. just goes to the first record.

Here whats in the Current.

If Me!Listbox.Value = "Gym" Then
Me.Hours.Visible = True
Else
Me.Hours.Visible = False
End If

could this be stopping the DoCmd.GoToRecord , , acNewRec from working in the Open.
 
could this be stopping the DoCmd.GoToRecord , , acNewRec from working in the Open.
I don't think so. Have you checked that the code actually runs when the form opens
 
I don't think so. Have you checked that the actually runs when the form opens

Yeah have dchecked but goes straight to Current code after going through New record.
 

Users who are viewing this thread

Back
Top Bottom