Copy Data From One listbox to another on button click event
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
Hey frnds. Suppose Combo1 contains data ,I want that when we click on buton & alll the items are copied to Combo2. Plz reply. Thx in advance.
-
Hey frnds. Suppose Combo1 contains data ,I want that when we click on buton & alll the items are copied to Combo2. Plz reply. Thx in advance.
Iterate through Combobox1's items using
for each ... next
and add every item to Combobox2 usingCombobox2.items.add(yourItem)
. Now, how difficult was that? Are the keys "i" "e" and "a" broken on your keyboard?"I love deadlines. I like the whooshing sound they make as they fly by." (DNA)