Solved Prevent combobox overwriting existing values. (1 Viewer)

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 08:48
Joined
May 7, 2009
Messages
19,231
without adding record, click on the first combo record, continue clicking the other combo records.
 

HillTJ

To train a dog, first know more than the dog..
Local time
Yesterday, 13:48
Joined
Apr 1, 2019
Messages
730
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?
 

bastanu

AWF VIP
Local time
Yesterday, 17:48
Joined
Apr 13, 2010
Messages
1,402
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

Top Bottom