How do I hide a control in a report's page header if the value of the controls = a criterea?
I have tried:
dim WClause as string
WClause = "NoShow"
if me.strCustomer = "NoShow" Then
me.strCustomer.Visible = True
Else
me.strCustomer.Visible = False
End If
but strCustomer does not like the attribute .visible!
Many thanks
I have tried:
dim WClause as string
WClause = "NoShow"
if me.strCustomer = "NoShow" Then
me.strCustomer.Visible = True
Else
me.strCustomer.Visible = False
End If
but strCustomer does not like the attribute .visible!
Many thanks