I have tried this code and still when selecting the dates in the Combo Box they appear as a number format
Code:
Private Sub cboGetDate_Change()
Dim GetDate As Date
If GetDate = CDate(cboGetDate.Value) Then
cboGetDate.Value = Format(CDate(cboGetDate.Value), "dd/mm/yyyy")
Else
End If
End Sub
I cant see where am going wrong?