Hello all!
I have inherited an incomplete project, with a limited knowledge to Access and VBA, please help.
I have a form, called "validalist". There is a checkbox named "Arch" in the header. I want to hide or reappear another checkbox named "Arch2" and a label "label1" with checking or unchecking "Arch".
I tried a little code like this:
But I get "Object doesn't support this property or method"
How to write this code properly?
I have inherited an incomplete project, with a limited knowledge to Access and VBA, please help.
I have a form, called "validalist". There is a checkbox named "Arch" in the header. I want to hide or reappear another checkbox named "Arch2" and a label "label1" with checking or unchecking "Arch".
I tried a little code like this:
Code:
If Me.Arch = True Then
Validalist.[Arch2].visible = False
Else
Validalist.[Arch2].visible = True
End If
How to write this code properly?