Hello, I'm filling a ComboBox with dates from an access database. My problem is I only want a date to appear in the combobox one time. Example: If there are ten "4/25/03" and five "4/20/03" dates in a table, I only want them to show up in the ComboBox one time. Here's an example of the code that doesn't work:
'load database parameters here
rst3.MoveFirst
While Not rst3.EOF
Combo2.AddItem rst3!batchDate
rst3.MoveNext
Wend
This code load all 15 dates.
Any help would be welcomed! Thanks
Mike Sayler
'load database parameters here
rst3.MoveFirst
While Not rst3.EOF
Combo2.AddItem rst3!batchDate
rst3.MoveNext
Wend
This code load all 15 dates.
Any help would be welcomed! Thanks
Mike Sayler