Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
13k views

Moving items in Dual Listboxes

How can I move items from one list box control to another listbox control using JavaScript in ASP.NET?
2
votes
1answer
53 views

List with remove/delete button

I am developing a WinForms application and I want a ListBox (or a control which provides list of strings) such that when the user hovers the mouse over an item it will show a delete sign for that ...
2
votes
2answers
384 views

Override the Listbox Control to return a concatenated string value

I have to redefine the ListBox class to make sure that it returns a csv string of all the selected items and also should take in a csv string and populate the listbox when needed. Lets say I have this ...
2
votes
3answers
295 views

How do I get all the values in a listbox when looping through them?

I'm currently trying to move through all the values added to a listbox by the user, however, I want to retrieve the actual value of each item in the listbox and not the text. I've gotten so far with ...
1
vote
1answer
96 views

how to detect when data binding to UI elements (panorama and listbox) have completed in windows phone 7?

i have a Panorama control and ListBox controls inside the Panorama. is there any "event" that i can hook on to or any way to detect when all the data binding or UI display associated with the Panorama ...
1
vote
2answers
529 views

Remove duplicates from listbox/combobox in WPF

I've seen answers mentioning something compact like this:here List<T> withDupes = LoadSomeData(); List<T> noDupes = withDupes.Distinct().ToList(); So I tried the following (syntax) ...
1
vote
3answers
4k views

Multi Column Listbox

Is there a way to bind a Generic List to a multicolumn listbox, yes listbox...I know but this is what I am stuck with and can't add a grid or listview. Thanks
0
votes
0answers
13 views

Is it possible to implement and controlling a “selection Type” using Multiple Selection Box MFC?

I have done some research into this and couldn't find anyone who describes how to implement this. Basically I want to use Multiple Selection in a way that discerns two types of selection in a existing ...
0
votes
3answers
72 views

Form Listbox & SQL Database

I'm designing a C# Form program that uses a listbox to display search results from a SQL database. The search function works but now I want to be able to select one of the listbox rows and load the ...
0
votes
1answer
43 views

Repeatedly update contents of a list box while maintaining user control

In VBA, I am repeatedly updating the contents of a list box with the text of a steadily growing text file. Is there any way to let the user maintain control (scroll the list box, press a button) while ...
0
votes
1answer
138 views

How to adjust control to fit to the screeen inside a listbox?

I am trying to create listbox with images wrapped in a wrappanel. I want to show the items fit to screen. like if the items width is less than the available screen width then the items should be ...
0
votes
4answers
331 views

Listbox formatting using DataTextField property

I have a list box in my aspx page: <asp:ListBox ID="lstTreatmentProvider" runat="server" SelectionMode="Multiple" Width="175px" Height="81" ...
0
votes
1answer
145 views

asp:ListBox control selecting a row using javascript

I have an asp:ListBox control on my web page. I am trying to select an item in the list using javascript. After looking at the underlying structure I have tried: catListBoxCtl[0].Selected = true; ...
0
votes
0answers
28 views

Controls added to an item in a Listbox Dissapear after scrolling fast vertically

I have a listbox that contains items that have 2 controls attached : Format of each item in Listbox: (NumericUpDown) + (CheckBox) + Text My listbox may have up to 500 items. Now the problem i am ...
0
votes
1answer
796 views

RIA Services - Getting DataContext in a List item

I'm looking for a workaround for my RIA Services project, which has a Listbox with the Listitems as a user control defined as an ItemTemplate, like this: <ListBox x:Name="lstMain"> ...
0
votes
1answer
848 views

Problem getting multiple selections in a listbox to export into a worksheet

I am new to VBA and need some help. I have created an Excel Userform with labels, textboxs, command buttons, frames, option buttons etc and they all work fine. All the data entered in the userform ...