M
maceslin
New to coding...
I want to use a selection in a combo box (cboClassification) to
populate a text box (Con_Num_Class) on the same form. The code I am
using is not working
Private Sub cboClassification_()
If cboClassification = "UNCLASS" Then
Me!Con_Num_Class = "U"
Else
If cboClassification = "CONFIDENTIAL" Then
Me!Con_Num_Class = "C"
Else
If cboClassification = "SECRET" Then
Me!Con_Num_Class = "S"
End If
End If
End If
End Sub
Any suggestions?
Dave
I want to use a selection in a combo box (cboClassification) to
populate a text box (Con_Num_Class) on the same form. The code I am
using is not working
Private Sub cboClassification_()
If cboClassification = "UNCLASS" Then
Me!Con_Num_Class = "U"
Else
If cboClassification = "CONFIDENTIAL" Then
Me!Con_Num_Class = "C"
Else
If cboClassification = "SECRET" Then
Me!Con_Num_Class = "S"
End If
End If
End If
End Sub
Any suggestions?
Dave