Solved Prevent combobox overwriting existing values.

without adding record, click on the first combo record, continue clicking the other combo records.
 
People, what can i say?. Seemed to work for me, but maybe i'm wrong. Great to see so many contributers understand my issue. The fix?
 
O I see, thanks for point that out, I think adding a Me.Refresh in the Exit would reset it:
Private Sub cboTraining_Exit(Cancel As Integer)
Me.cboTraining.RowSource = "AllTrainings"
Me.Refresh
End Sub

Cheers,
 

Users who are viewing this thread

Back
Top Bottom