I have the same problem as thread,
http://www.excelforum.com/excel-prog...ml#post1969271
When I fill the Combo Box it shows as a date in the list for selecting in the Combo Box. Once I select the Date I want it then changes back t its number format. I have tried using the code below and still no joy, where am I going wrong?
Code:
Private Sub cboGetDate_Change()
cboGetDate.Text = Format(cboGetDate.Text, "dd/mm/yyyy")
End Sub