icemonster
Registered User.
- Local time
- Today, 09:06
- Joined
- Jan 30, 2010
- Messages
- 502
ok.
i can make this work, but somehow, i can only do one choice. i have 4 choices, lets say A,B,C,D, if i choose B, i want field B to be visible, and also if i choose C, or even D.
yet somehow, i can only make it work for one. can anyone help me? here is the code.
Private Sub Status_AfterUpdate()
If Me.[Client Status] = "On Hold" Then
Me.Hold_Termination_Date.Visible = True
Else
Me.Hold_Termination_Date.Visible = False
End If
End Sub
any help will be greatly appreaciated.
also, is it possible to hide more than one field?
i can make this work, but somehow, i can only do one choice. i have 4 choices, lets say A,B,C,D, if i choose B, i want field B to be visible, and also if i choose C, or even D.
yet somehow, i can only make it work for one. can anyone help me? here is the code.
Private Sub Status_AfterUpdate()
If Me.[Client Status] = "On Hold" Then
Me.Hold_Termination_Date.Visible = True
Else
Me.Hold_Termination_Date.Visible = False
End If
End Sub
any help will be greatly appreaciated.
also, is it possible to hide more than one field?