K
Kirk P.
I have a TranType combo box with 2 columns. Column 1 is the TranID, and
column 2 is the TranName. If a user selects "Revenue" in the combo box
(which is TranID 1), then it enables the Rate and Members controls. This
code isn't working. Can anyone debug?
Private Sub TranType_AfterUpdate()
If Me!TranType.Column(1) = 1 Then
Me.Rate.Enabled = True
Me.Members.Enabled = True
End If
End Sub
column 2 is the TranName. If a user selects "Revenue" in the combo box
(which is TranID 1), then it enables the Rate and Members controls. This
code isn't working. Can anyone debug?
Private Sub TranType_AfterUpdate()
If Me!TranType.Column(1) = 1 Then
Me.Rate.Enabled = True
Me.Members.Enabled = True
End If
End Sub