Check box code.

  • Thread starter Thread starter Rpettis31
  • Start date Start date
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
 
This check box is in a tabbed form where as the the combo box is not in the
tabbed area.
 
Back
Top