kevinh2320
Board Regular
- Joined
- May 13, 2016
- Messages
- 61
On my MS Access Customer form I have a ComboBox called CustomerRequest. An option in the ComboBox is ACCOUNT SUSPENSION. On this same form I have a TextBox called PaymentFrequency with its Visible property set to No. I want the PaymentFrequency Textbox to become visible on the form when the Combox box is equal to ACCOUNT SUSPENSION. I'M new to vba and the code I wrote isn't doing anything.
Private Sub CustomerRequest_AfterUpdate()
If [CustomerRequest] = "ACCOUNT SUSPENSION" Then
[PaymentFrequency].Visible = True
End If
End Sub
Any help greatly appreciated.
Private Sub CustomerRequest_AfterUpdate()
If [CustomerRequest] = "ACCOUNT SUSPENSION" Then
[PaymentFrequency].Visible = True
End If
End Sub
Any help greatly appreciated.