doran_doran
Registered User.
- Local time
- Today, 04:27
- Joined
- Aug 15, 2002
- Messages
- 349
1. Combo box 1 = "BillingStructure" should always be enable.
2. Combo box 2 = "Fee Waived" should be grayed out all the time only if the user pick "Fee Waived" from combo box 1.
3. if user pick "fee waived" from billingstructure combo box then fee waived combo box should be enable.
4. There are also some text associated with this, but i guess i can use the same method.
any help will be appreciated.
==================================
Private Sub BillingStructure_Change()
If Me!BillingStructure = "Fee Waived" Then
Me!Waiver_Reason.Enable = True
Me!Waiver_Reason.Locked = False
Else
Me!Waiver_Reason.Enable = False
Me!Waiver_Reason.Locked = True
End If
End Sub
2. Combo box 2 = "Fee Waived" should be grayed out all the time only if the user pick "Fee Waived" from combo box 1.
3. if user pick "fee waived" from billingstructure combo box then fee waived combo box should be enable.
4. There are also some text associated with this, but i guess i can use the same method.
any help will be appreciated.
==================================
Private Sub BillingStructure_Change()
If Me!BillingStructure = "Fee Waived" Then
Me!Waiver_Reason.Enable = True
Me!Waiver_Reason.Locked = False
Else
Me!Waiver_Reason.Enable = False
Me!Waiver_Reason.Locked = True
End If
End Sub