Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
563 views

OpenGl ES scrollable ListBox clipping problem

I am trying to create a generic list box in OpenGl ES (for the iPhone/iTouch) and I am running into a bit of a conundrum with clipping the ListBoxItems. Each ListBoxItem object will know how to draw ...
2
votes
3answers
84 views

If / else statement ASP.NET C#

As of right now I am trying to create an ASP.NET page which will list books from a category, in a listbox based upon which category button you choose and then I have another two buttons (one for DESC ...
2
votes
2answers
158 views

How do I add an item to a TListBox and associate it with a data object?

See the code: function ShowItem(MyData: TMyData): TListItem; var vListItem: TListItem; begin vListItem := ListView1.Items.Add; vListItem.Data := MyData; vListItem.ImageIndex := 1; ...
2
votes
2answers
618 views

How to get item list from wxpython ListBox

Is there a single method that returns the list of items contained in a wxPython listBox? I cant seem to find anything anywhere in the documentation or anywhere for that matter. All that I can think ...
1
vote
1answer
234 views

Drag and Drop a Folder from Windows Explorer to listBox in C#

I succeeded in developing C# code for drag files from windows explorer to listBox. // Drag and Drop Files to Listbox private void listBox1_DragEnter(object sender, DragEventArgs e) { ...
1
vote
1answer
919 views

WPF/C#: How to add images from a horizontal listbox/listview by (file paths coming from a database table)

Is there are way to customize the listbox/listview horizontally and add items (images) coming from a database which has a record of image file paths?
0
votes
0answers
74 views

javascript function for moving asp.net listbox items up and down in asp.net

I am using javascript function to move up and down items of listbox. But after moving items when i am trying to save those items.The order is not getting reflected in listbox at codebehind. it is ...
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
1answer
26 views

Adding to last listbox item

Let's say I have a listbox and two buttons in a windows form application. When I click button1, "button1" is added to the listbox. When I click button2 "button2" is added as a new entry. What I'm ...
0
votes
1answer
42 views

GWT ListBox() Java MySql

I have selected records from mySql table and and have inserted each record into an array list. I am trying to insert each value into a position the drop down list box. I am stumped...any suggestion ...
0
votes
1answer
142 views

MouseOver and IsSelected events for ListBoxItem in WPF

I want to have ListBoxItem trigger two events which I can catch from the outer usercontrol that contains the ListBox. Here is what I got so far: <ListBox Background="Black" ...
0
votes
1answer
288 views

mvc3 exchange items between listboxes

I have two list boxes in my view with four arrows to exchange the items between them. I am using 4 buttons with type="submit" and handling it in the controller. Is there any way that i can do it with ...
0
votes
1answer
304 views

Binding webService data to the ListBox DataTemplate WP7

I'm trying to read data using web service and display it on a costumized lisBox as below but it didn't work. "When i do the debugging my phone application screen does not show any list" XAML code: ...
0
votes
2answers
46 views

Silverlight searcher

I'm trying to do something similar to a searcher in Windows Phone 7, and what I've done is the following, I've got a TextBox with a TextChanged event and a Listbox of HyperlinkButtons. What I try it's ...
0
votes
1answer
128 views

SQL Report Group by field (listbox item selection)

I am new to SQL Reporting. I have created a report(.rdl) file using SQL Server 2008 R2, SQL Server Business Intelligence Development Studio by using online help. The report displays 2 fields. ...
0
votes
1answer
362 views

Align listbox items horizontally

I want to show a listbox with two items for each row. You can see an example here. I have the following XAML: <Grid x:Name="FriendsGrid"> <ListBox x:Name="FriendsList" Margin="0" ...
0
votes
3answers
466 views

WPF C# ListBoxItem Code Behind for If Statement

This seems simple but I can't figure it out! Looking for a little help here. I have a bunch of ListBoxItems and would like them to dump different text out when dropped. Is it possible to have an if ...
0
votes
1answer
108 views

WPF ListBoxItems problem

In wpf app I have binded Dictionary to listbox. I have own style on listbox. Listbox item consit image and 3 texblocks. Friend class is here: public class FriendData { public string idUser { ...
0
votes
2answers
578 views

Casting a ListBox.SelectedObjectCollection to a ListBox.ObjectCollection?

Is it possible to cast a ListBox.SelectedObjectCollection to a ListBox.ObjectCollection in C#? If so, how would I go about it?
0
votes
1answer
451 views

Linking individual queries in a unbound listbox in ACCESS 2007

I have created a unbound listbox. I have the box showing a list of queries I want the use to be able to select. My problem is I don't understand how to get the submit button to select the currently ...
0
votes
2answers
1k views

BackgroundWorker giving problem in C# while adding item in Listbox?

I have a listbox in which i have to give minimum 2 files for merging. the merging is done when i click Merge button.The progress bar starts and the message box appears That the files has been ...
0
votes
2answers
2k views

Is there a way to iterate in a ListBox Items templates?

I have a list box that contains items that are represented by a single textbox. When the user clicks a button, I want to iterate thru all these text boxes and check if their binding expressions are ...