I have a tabbed form with a subform on the second tab. I have a label on the first tab (main form) with visible set to false.
I want it to show ONLY IF the checkbox on the subform is checked, which will change with each record.
I am not sure WHERE to put the code. Form_load? Form_Current? Here is what I was thinking:
As you can tell, I haven't quite figured out how to properly reference the controls either....
Any help would be appreciated!
I want it to show ONLY IF the checkbox on the subform is checked, which will change with each record.
I am not sure WHERE to put the code. Form_load? Form_Current? Here is what I was thinking:
Code:
Private Sub Form_Load()
If Me!sfrAppData.Form!DoNotInterview.Checked = True Then
Me!lblIneligible.Visible = True
Else: Me!lblIneligible.Visible = False
End If
End Sub
As you can tell, I haven't quite figured out how to properly reference the controls either....
Any help would be appreciated!