B
Beeyen
Good Day,
The following code is listed in the Event Procedure of the WorkCategory. It
is meant to enable the fields ClaimsMonitor and SecondTester only if the
Rates, or Plans, or Co-Pay or Accumulations with the Combo Box is selected.
Otherwise the fields are disabled. The fields ClaimsMonitor and SecondTester
are enabled when the selection is made. The issue the field is it happens
with all the selection in the Combo Box. Could someone suggest what I am
doing wrong?
Thanks in advance
Private Sub WorkCategory_AfterUpdate()
Select Case Me.WorkCategory.Column(2)
Case "RATES", "PLANS", "CO-PAY", "ACCUMULATIONS"
Me.ClaimsMonitor.Enabled = False
Me.SecondTester.Enabled = False
Case Else
Me.ClaimsMonitor.Enabled = True
Me.SecondTester.Enabled = True
End Select
End Sub
The following code is listed in the Event Procedure of the WorkCategory. It
is meant to enable the fields ClaimsMonitor and SecondTester only if the
Rates, or Plans, or Co-Pay or Accumulations with the Combo Box is selected.
Otherwise the fields are disabled. The fields ClaimsMonitor and SecondTester
are enabled when the selection is made. The issue the field is it happens
with all the selection in the Combo Box. Could someone suggest what I am
doing wrong?
Thanks in advance
Private Sub WorkCategory_AfterUpdate()
Select Case Me.WorkCategory.Column(2)
Case "RATES", "PLANS", "CO-PAY", "ACCUMULATIONS"
Me.ClaimsMonitor.Enabled = False
Me.SecondTester.Enabled = False
Case Else
Me.ClaimsMonitor.Enabled = True
Me.SecondTester.Enabled = True
End Select
End Sub