R
ranswrt
I have a form with a listbox with 7 columns and I want add items to the
listbox using textboxes and a commandbutton. when I click the commandbutton
to add the items in the textboxes to the end of the items in the listbox I
get an error. the code that I have tried is :
For i = 0 To 6
With ListBox1
.List(num, i) = aitem(num, i)
End With
Next
I get a 'type mismatch error.
What is the best way to enter new items to the end of an existing list of
items in a listbox that has 7 columns?
Thanks
listbox using textboxes and a commandbutton. when I click the commandbutton
to add the items in the textboxes to the end of the items in the listbox I
get an error. the code that I have tried is :
For i = 0 To 6
With ListBox1
.List(num, i) = aitem(num, i)
End With
Next
I get a 'type mismatch error.
What is the best way to enter new items to the end of an existing list of
items in a listbox that has 7 columns?
Thanks