S
Sue Compelling
Hi
I have the following code which works perfectly when a user selects "1"
though does not work for when they select "10" ... what have I done wrong? ...
My code is ...
Private Sub Form_Current()
Me![contactsorg subform].Form.Visible = False = (Me.Type = 1) or (Me.Type =
10)
Me.Org_NameLabel.Visible = False = (Me.Type = 1) or (Me.Type = 10)
Me.OName.Visible = False = (Me.Type = 1) or (Me.Type = 10)
Me.OrgContacts_Label.Visible = False = (Me.Type = 1) or (Me.Type = 10)
Me.Website.Visible = False = (Me.Type = 1) or (Me.Type = 10)
Me.Website_Label.Visible = False = (Me.Type = 1) or (Me.Type = 10)
--
TIA
Sue Compelling
I have the following code which works perfectly when a user selects "1"
though does not work for when they select "10" ... what have I done wrong? ...
My code is ...
Private Sub Form_Current()
Me![contactsorg subform].Form.Visible = False = (Me.Type = 1) or (Me.Type =
10)
Me.Org_NameLabel.Visible = False = (Me.Type = 1) or (Me.Type = 10)
Me.OName.Visible = False = (Me.Type = 1) or (Me.Type = 10)
Me.OrgContacts_Label.Visible = False = (Me.Type = 1) or (Me.Type = 10)
Me.Website.Visible = False = (Me.Type = 1) or (Me.Type = 10)
Me.Website_Label.Visible = False = (Me.Type = 1) or (Me.Type = 10)
--
TIA
Sue Compelling