R
Rpettis31
I have several check boxes on a form that upon selection I would a combo box
to change its value.
Private Sub chkSort_KeyPress(KeyAscii As Integer)
If Me.chkSort = True Then _
Me.cboDMRStatus.Value = "In Process"
End Sub
to change its value.
Private Sub chkSort_KeyPress(KeyAscii As Integer)
If Me.chkSort = True Then _
Me.cboDMRStatus.Value = "In Process"
End Sub