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 answers total)
 
I usually program those sorts of functions using Command Buttons, with appropriate code in the associated event procedures. i.e.

(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


Response by poster: I'm not after a component as such - I've rolled my own [in php], but there's definately a catch-all term for the functionality. I want release it into the community, and naturally want to clasify it by it's common(?) terminology.

Back of my mind says something along the lines of teeter like teeter totter or maybe it's one of a million other words begining with t. Or any other letter for that matter.
posted by handybitesize at 1:06 PM on October 3, 2005


Best answer: Picklist
posted by Manjusri at 1:46 PM on October 3, 2005


For some reason we seem to call the one we made for asp.net a "multi-select client."

How does that distinguish it from a list box or check box list, you ask? I really don't know, but that's what we call it.

[an aside: I'm actually on a push right now to replace it with an AJAX-based component because I think those things you describe are clunky and otherwise limited.]
posted by frufry at 2:51 PM on October 3, 2005


As well as multi-select, I've often heard it called a Shuffle widget.

And I agree with frufry about the clunkiness of the interface. I try to get rid of them whenever possible.
posted by BobInce at 5:01 PM on October 3, 2005


« Older Commercial espresso machine for my house?   |   Reefer rum Newer »
This thread is closed to new comments.