Windows.Form component name
October 3, 2005 8:54 AM
Subscribe
Windows form programming: I'm searching my brain for the term that describes the form component that allows you to copy items from one list to a second.
You know the sort of thing...
Add >>
Add All >>
Remove <<
Remove All <<
... in the middle. Its got a term but really struggling to recall it
Sorry for the vagary but one of my synapses is missing
posted by handybitesize to computers & internet (5 comments total)
(air code: assume List1 in the left, List2 on the right, Command1 in the middle)
Command1.Caption = "Add >>"
Private Sub Command1_Click()
List2.Additem List1.SelectedItem
End Sub
I don't know of any discrete component that does what you are suggesting.
posted by pjern at 10:11 AM on October 3, 2005