A graphical user interface element that allows the user to select one or more items from a list.
-9
votes
0answers
27 views
Hiding the text in Listbox
I have an list box, Text box and "Add","Display" buttons.
The need is save the text when click the Add button and display the text when click the Display button. don't display the text when click the ...
4
votes
3answers
38 views
Array values into list box
Hey guys currently have the following code
I am trying to insert values into a listbox, and then be able to resort the values by alphabetical order and re display them in the same listbox. For some ...
0
votes
1answer
27 views
how to update a listbox in one window in one class using a different class python
what i have is a window that opens up and it has a list box. this is created using one class. when i click the search button and results are found using a different class, i want the list box to ...
0
votes
1answer
45 views
Winform Listbox Select Items from Database [duplicate]
I have three database tables:
a list of cars,
a list of people, and
the third is the many-to-many table of people to cars.
On my winform for a person, I have a listbox of available cars. ...
0
votes
1answer
13 views
ListBox selected index is lost after PostBack in ASP.NET
I've got an issue with a ListBox in ASP.NET application: after manual selection, an event "SelectedIndexChanged" fires, but its handler cannot keep neither the selected index nor the selected item. ...
0
votes
1answer
16 views
How to mange a listbox inside a tab control
This is the first time I'm trying to build something with a tab control.
At first I made a small application in .NET 4 C#, which had a listbox as a stand alone at its main window and now I want to ...
0
votes
0answers
20 views
Search WebList for particular item count from Excel sheet
I need a help in VBScript or either in QTP for the below case.
For example:
I have nearly 40 items in the weblist. I have only one item in the Excel sheet that is one among the 40 in the weblist. If ...
1
vote
1answer
138 views
postback when scrolling ListBox in chrome
with scrolling list box, the page will refresh(unwanted).
this problem is only in chrome (Version 27). In other browsers it works properly.
.aspx file:
<asp:Label runat="server" ID="label1" ...
0
votes
1answer
19 views
Set ListBox selecteditems by the ItemText?
I have a Listbox with 100-200 default values and the multiselect-simple mode is enabled.
I save the selected text items in a List of string:
Private Sub ListBox_Styles_SelectedIndexChanged(sender As ...
0
votes
2answers
3k views
Custom Listbox Scrollbar style Issue
I have the following xaml for WPF ListBox control. I have customized it so suit my UI requirements. However, the scrollbar thumb won't reach the top & bottom of the scrollbar. Also the thumb won't ...
1
vote
1answer
152 views
Dragging buttons in ListBox in WP7
I am facing a problem in list box which containing a Grid with three buttons.
I have implemented swap feature of buttons inside this grid.
My problem is when I drag button from left to right and ...
0
votes
0answers
31 views
How to animate listbox items that are databound
How can I control the Storyboard on the following ListBox DataTemplate so that after the data is bound each item appears one after the other, starting top to bottom:
<ListBox x:Name="matches" ...
0
votes
0answers
19 views
How do I remove the default Mouseover/Selcted Item highlight style on a listBox/ListView when using a DataTemplate as my ItemStyle?
When using a Listbox I normally use an ItemContainerStyle for the style of my items. I could then change my default mouseover highlight style no problem. With a DataTemplate as my Item style I cannot ...
0
votes
1answer
27 views
how to use display the value of an element of a list<string> in MVVM?
Normally, when I binding de items source of a control in the view, the property in the view model use to be a list of an object. This Object has many properties and I can choose one of the to set the ...
2
votes
3answers
34 views
How to get indices of selected items in WPF's listbox?
Before you mark this question as a duplicate or suggest using Items.IndexOf, please do the following:
public MainWindow()
{
InitializeComponent();
var A = new object();
var B = new ...
0
votes
1answer
17 views
Remove item from ASP listbox in client side script
I am using this JavaScript code to delete the selected item in a listbox named lbResources when the user clicks a button:
var listResources = document.getElementById('lbResources');
...
1
vote
1answer
42 views
C# data bound ListBox
I have the following two Access tables:
Employee table:
EmployeeID
Name
etc.
Project table:
ProjectID
EmployeeID
ProjectDescription
Each Employee can manage zero or more projects.
I know how to ...
3
votes
2answers
3k views
How to show a divider between items in a ListBox?
I am using a ListBox control in a Windows Phone 7 application, and I would like to show a divider/line between the list rows.
I have not been able to find any information about this, although many ...
-2
votes
3answers
99 views
How Do I Sum Items in the List box?
I have two ListBoxes, Source and Destination. The destination ListBox has Items selected by the user.
How do I sum items in a destination ListBox?
The Destination ListBox has two data types String ...
0
votes
1answer
42 views
Custom ComboBox not closing properly
I am trying to make my custom ComboBox inheriting from ContainerControl. I used this article as a base but rewrote it, but I use a ToolStripControlHost, my own custom ListBox & a ...
0
votes
0answers
120 views
Filter listbox items
I would like to be able to filter a listbox containing +5000 strings, each 50 - 250 characters in length.
At the moment I created a form with checkboxes. When I check a box the ItemCheck event will ...
2
votes
5answers
4k views
How To Hide ListView ColumnHeader?
I am struggling to figure out the correct control to use for a list of predefined jobs in the included form. I currently have a ListBoxControl in the Predefined Job Name group that lists all of the ...
10
votes
3answers
5k views
ListBoxItem produces “System.Windows.Data Error: 4” binding error
I have created the fallowing ListBox:
<ListBox x:Name="RecentItemsListBox" Grid.Row="1" BorderThickness="0" Margin="2,0,0,0" SelectionChanged="RecentItemsListBox_SelectionChanged">
...
1
vote
1answer
74 views
Get items from listbox in controller MVC ASP 4
I have a page where you can create channels. Channels have genres associated with them.
CreateChannel.cshtml
<h2>Create Channel</h2>
<div class="row-fluid">
<div>
@{
...
0
votes
0answers
52 views
TStylebook iOS Delphi XE4
Does anyone know if the TStylebook component will allow a user to change the look of the listview... (Not just an item title and detail). It works on a windows app which is fine, but i would like to ...
2
votes
3answers
53 views
GUI Table using in Racket / variable parameters using list-box%
I'm currently trying to create a a grid of information in Racket using the Racket Graphical Interface Tooling. The only real table that is available is the list-box% (link to reference)
To fill the ...
1
vote
2answers
39 views
List Box Hangs after adding several Entries
I'm using winforms in c#.
I simplified my app so that it just has a list box and a button.
here is my button click code.
private void button1_Click(object sender, EventArgs e)
{
...
2
votes
0answers
19 views
PreviewKeyDown for Windows Store App ListBox
Is there an equivalent to the PreviewKeyDown for a Windows Store App? It isn't available.
I have exactly the same problem as described here:
I have a ListBox with a TextBox above it. I would like ...
-1
votes
2answers
30 views
List like container in html/javascript which is populated through csv/json [closed]
I am new to web development. I am trying to create a webpage with a list-like container which lists all *.html files contained in a directory. And a mouse click on one of these listed names displays ...
0
votes
3answers
44 views
C# Update Database for every Item in listBox
I have created a Database that has an ID column (aitisi_ID) and a category column(kat_aitisis). I want to Update the kat_aitisis column for every ID that shows up on my listBox with the string kat1.
...
1
vote
2answers
51 views
How can i move items from one Listbox to another in ASP MVC 4?
How is it possible to move items from one Listbox to another Listbox in the same view without having to reload the entire page but just update the two listboxes in ASP MVC 4?
It is in order to have ...
0
votes
1answer
47 views
MVVM how best to display ListBox.SlectedItem
I have a ListBox bound to a list of ViewModel objects on the LHS of my screen. The ListBox.SlectedItem is bound to a property on my "MainWindowViewModel", called CurrentItem. On the RHS I have a large ...
1
vote
0answers
15 views
Weird Error: Hit ENTER key in listbox, get NULL error for bound recordset values
Access 2007 ADP/ADE.
I have a modal that is bound to a table. The modal has a single listbox control, and two buttons. One executes a subroutine of code that access values from the bound recordset, ...
0
votes
2answers
77 views
I'm looking for a list like this in the image for Delphi XE3?
Anybody knows where to find or how to make a list like this one in Delphi XE3 ?
Or it's time to leave Delphi and use Visual studio ?
however this site list view control for .NET Windows Forms claims ...
0
votes
0answers
23 views
Changing Font Size in Custom Created Listbox Control Vb.net
I am try to Inherits a Listbox control to change StringFormatFlags direction. All is OK, but when I change the font size of Listbox it dose not draw item properly. How to fix this issue.
Public ...
0
votes
1answer
42 views
C# listBox.SelectedIndex from Database
In visual Studio 2010 (using visual C#),I have a form where there is a listBox (named listBox1). The user selects one of the items displayed on the listBox and then clicks on a Save Button. The ...
1
vote
3answers
87 views
How do I make a listbox same as Outlook 2013?
In Delphi XE2 or XE3, How can I make a list box similar to Outlook 2013 list of emails ?
or is the list in Outlook 2013 something else ?
how can I achieve a similar one in Delphi XE2 or XE3 ?
...
1
vote
2answers
21 views
Listbox value not assigned to variable
I am trying to assign a listbox value to a variable, however every time I run the code I get the Invalid use of Null error.
Private Sub CmdEnter_Click()
Dim RS As dao.Recordset
Dim RS2 As ...
0
votes
2answers
45 views
Single selection listbox selected items to another listbox
I've tried quite a few options but none of them has gotten me closer to the results.
I'm really new to WPF, so I'm sorry form my perhaps trivial question.
I have a single selection listbox and I ...
0
votes
0answers
18 views
ModalPopupExtender postback dual Listbox
I have dual listboxs (followed by http://www.meadmiracle.com/dlb/DLBDocumentation.aspx) which work well. Now I need a ModalPopupExtender page to confirm user's selected. when user click button submit ...
0
votes
0answers
277 views
How to maintain virtualization in WPF ListBox while templating selected item
I have a ListBox with 1000 items and when a particular item is selected, the item expands (as I have Templated the ListBox Selected Item) providing more information to the user.
The problem is that ...
0
votes
1answer
42 views
Filling a dropdownlist dynamically
So I'm working in ASP.NET MVC4 and I want to load a dropdownlist dynamically.
This is my modelclass:
public class Meeting
{
public int MeetingId { get; set; }
[Required(ErrorMessage = "A name is ...
0
votes
0answers
34 views
Using ListBox to upload data via macro
I'm currently trying to improve the process of adding a new invoice to an invoice database and attempting to achieve this via a Listbox written in VBA. So far I can get the Listbox and prompts to ...
0
votes
0answers
25 views
Microsoft Access Drawing Line on Listboxes
I have a problem for drawing line between listbox items. I have 3 ListBoxes; one of them has three columns and other two have one column. What I want is to draw line between items inside these boxes ...
0
votes
0answers
41 views
How to cycle though each Array position and view in Listbox c#?
sorry for any inconvenience in the structure I am getting to grips.
I have an array that stores string data and is then displayed in a list box.
I also have array that holds the cost then multiplied ...
0
votes
1answer
26 views
Mouse click on selected item in listbox unselect the oders items
In listbox when several items is selected and I click on one of them, the oders become unselected.
How to allow possibility become unchanged the oders items?
0
votes
0answers
52 views
Listbox always -1 c# asp
Hi Everyone I've been looking for a solution to this problema for a while, ive searched the net but still can't get this too work. if i put my code in the default asp template it will work, but when i ...
2
votes
4answers
762 views
How to select multiple value from a listbox
I have a below code where if I select one value, it works fine, but now I need such that when I select multiple values from the listbox, i have to get the value of selected values. How do i go about ...
0
votes
1answer
128 views
Userform listbox filled with pivot table values - excel
I am trying to load a listbox with the rows from a pivot table field. I have found the following code that works for a ActiveX Control Listbox, but not for a UserForm Listbox. The UserForm control ...
2
votes
2answers
135 views
Hidden id on tkInter Listbox
I'm wondering if it's possible to somehow store a hidden id along with each entry on a Listbox. The reason for this is that I've got a table which contains a unique id which is from a database (not ...



