Hi
can someone please help me with this
I have a main form and a subform. In main form there is a check box.
What I need is that when the subform is opened to look in main form if the check box is true or false and then the control on subform is enabled=True or False
I wrote this
I don't know how to access the check box
Thanks
can someone please help me with this
I have a main form and a subform. In main form there is a check box.
What I need is that when the subform is opened to look in main form if the check box is true or false and then the control on subform is enabled=True or False
I wrote this
Code:
Private Sub Form_Load()
If [........] = True Then
[Broj rata].Enabled = True
Else
[Broj rata].Enabled = False
End If
End Sub
I don't know how to access the check box
Thanks