brendoaccess
Technical User
Hello - I thought this was simple - the following code is supposed to hide a button (MemberReport) and its label, if the value in a combo box (Combo81) equals "Bulletin". Unfortunately, it hides them whatever the value of Combo81 is!
Private Sub Form_Load()
If Me![Combo81] = "Bulletin" Then
Me![MemberReport].Visible = False
Me![Label58].Visible = False
Else
Me![MemberReport].Visible = True
Me![Label58].Visible = True
End If
End Sub
All help gratefully appreciated.
Private Sub Form_Load()
If Me![Combo81] = "Bulletin" Then
Me![MemberReport].Visible = False
Me![Label58].Visible = False
Else
Me![MemberReport].Visible = True
Me![Label58].Visible = True
End If
End Sub
All help gratefully appreciated.