Hi guys.
When trying to run the following code, I keep getting Run-time error '424': Object required. Am I overlooking something obvious?
Private Sub Form_Current()
Dim Demographic_ID As Integer
If Me.Demographic_ID Is Null Then
Me.Consultant.Visible = False
Me.Contact_Date.Visible = False
Me.Contact_Approval_Given.Visible = False
Me.Nurse.Visible = False
Me.Comments.Visible = False
End If
End Sub