i want to add a combo box item(when the user clicks it)to display in a listbox....i have tried a few things w/ the additem code and have not yet found anythnig that worked:confused: .how would i do this
Printable View
i want to add a combo box item(when the user clicks it)to display in a listbox....i have tried a few things w/ the additem code and have not yet found anythnig that worked:confused: .how would i do this
Why not just listboxname.AddItem comboboxname.Text?
Maybe you can try this:
VB Code:
Private Sub Combo1_Click() List1.AddItem Combo1.List(Combo1.ListIndex) End Sub
o man i did that to...just backwords:( ...thanx