I need a code that will add Saturday to a drop down list box with a name of cboDays. thanks
Printable View
I need a code that will add Saturday to a drop down list box with a name of cboDays. thanks
r u new to VB?
If the String "Saturday" is to be put to the Combo Box (or list box)
cboDays.AddItem "Saturday"
If it is to be displayed
cboDays.ListIndex = 0
Srinika