B
Brian Goldhammer via AccessMonster.com
I have a field in my main form that is a combo box with "Original" and
"Credit Adjustment" as the options. When "Credit Adjustment" (default value
is CA) is selected, i would like the yes/no field in the subform for "Credit
Adjustment" to be set as yes (True).
I have this After Update procedure already in place and would like to add the
above function but I am lost on finding how to write the code.
*******************************************
Private Sub Combo69_AfterUpdate()
If Combo69.Value = "CA" Then
Label39.ForeColor = 255
Else: Label39.ForeColor = 0
End If
End Sub
*******************************************
Thanks in advance,
"Credit Adjustment" as the options. When "Credit Adjustment" (default value
is CA) is selected, i would like the yes/no field in the subform for "Credit
Adjustment" to be set as yes (True).
I have this After Update procedure already in place and would like to add the
above function but I am lost on finding how to write the code.
*******************************************
Private Sub Combo69_AfterUpdate()
If Combo69.Value = "CA" Then
Label39.ForeColor = 255
Else: Label39.ForeColor = 0
End If
End Sub
*******************************************
Thanks in advance,