In Visual Basic 08 how do you make a combo box with a list of dates in it, without using a DateTimePicker?
I want to have a combobox (drop down list) that has a list of dates in it in long form. I also want these dates as strings, how do I do this? Thank you in advance.
Public Comments
- it's either you click the combobox, change its items collection in properties and add some dates or write in your code ComboBox1.Items.Add("MM/DD/YYYY") ComboBox1.Items.Add("MM/DD/YYYY") . . .
Powered by Yahoo! Answers