Bean Machine
Member
- Local time
- Today, 17:11
- Joined
- Feb 6, 2020
- Messages
- 102
Hi Everyone! Hope you are all having a nice day! I have been attempting to make it so that the button for "Next Record" that I have on my form is not visible when a user is on a "New Record". How can I go about trying to hide the button and showing it when the user is not on a "New Record"? Here is what I have tried but it does not work:
Private Sub Form_Current()
If acNewRec = True Then
Me.btn_GoNext.Visible = False
Else
Me.btn_GoNext.Visible = True
End If
End Sub
Any help, as always, is greatly appreciated! Thanks!
Private Sub Form_Current()
If acNewRec = True Then
Me.btn_GoNext.Visible = False
Else
Me.btn_GoNext.Visible = True
End If
End Sub
Any help, as always, is greatly appreciated! Thanks!