I have a sub form (RPTSQueue_subform) on a main form that I would only like only appear when the user click a check box (Queue) on the main form. Below is the code that I am using on the AfterUpdate event of the check box, but it is giving me an error "Run-time error '424': Object required"
If Queue = 1 Then
'UnHide the Queue SubForm
Project_New.RPTSQueue_subform.Form.Visible = True
Else
Project_New.RPTSQueue_subform.Form.Visible = False
End If
Please help me out
Thanks
Scott
If Queue = 1 Then
'UnHide the Queue SubForm
Project_New.RPTSQueue_subform.Form.Visible = True
Else
Project_New.RPTSQueue_subform.Form.Visible = False
End If
Please help me out
Thanks
Scott