yinkajewole
Active Member
- Joined
- Nov 23, 2018
- Messages
- 281
How can one populate one listbox with the list from another listbox?
Just assign the List property of one to the other - eg:
Code:Listbox2.List = Listbox1.list
this code worked. however i just realized that i could not achieve what i wanted with it.
what i actually wanted to do is to remove some characters from the first listbox and put the remaining characters in the second listbox, can you help out with this?