Moving arrays between list box's

roker

New member
Joined
Apr 22, 2010
Messages
1
Programming Experience
1-3
Hey guys,
I'm currently building a program where there are two list box's and a button to copy the selected array item in listBox1 to listBox2 in a separate array.
however I'm totally lost with how to move it.
here is what i have
<code>
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

End Sub
</code>
any help appreciated ty ^-^
 
You could start by looking up how to Add an item to a listbox. A quick google will give you that information. After you figure out how to add an item it shouldn't be a long shot to figure out what you want to do. If you are still having trouble, post your code after you've done more than have VS create button code for you.
 
Back
Top