Re: ListBox and Custom made dialog box questions Programming Software Development by ddanbe ListBox and ListView are both meant to display a list of items. So your first ListBox seems ok to me. For the second I should consider a DataGridView, this would make your well crafted dialog window obsolete though. Re: Listbox Help Programming Software Development by Comatose …is not one, but a solution is to have another listbox, that's .visible property is set to false, and then… to do though, is use the listindex property of the listbox in the array.... for example [INLINECODE]print #1, array1(list1…;," & array3(list1.listindex)[/INLINECODE]. This works, because a listbox's first item is 0, and so is an arrays… Listbox Programming Software Development by BombAppetit ….RowSource = WaferSortRowSource [/code] but now i want to use a ListBox in a VB6 application instead, which i tried but the… listbox remained empty. this function i use in my VB6 program … how do i display the tables in the form of listbox instead? what should i put in RowSource property of the… listBox Programming Software Development by jduff8 … I have a Windows Form with 4 checkBoxes and 1 listBox. Three of the checkBoxes are Ford, Chevrolet, and Cadillac; … all cars. Unchecking each Box removes that car from the listbox. So, if you check Ford, Chevrolet, and Cadillac AND THEN…it is either overlaying the list OR there is another listBox of a different name but the exact same size that… listbox Programming Software Development by kenny22 … box i use filesystemwatcher to update contents of listbox and added a bit of code with a … to allow me to change the name of listbox item i click on, this works great apart… when i am editing the filename and the listbox updates at same time as this causes the … but not sure if that would stop the listbox updating as well and i was thinking about… Re: listbox Programming Software Development by Teme64 …A global variable to hold index of the renamed listbox item private int _selectedItemIndex; // I used changed …trap changes. Of course you have to fill the listbox first private void fileSystemWatcher1_Changed(object sender, FileSystemEventArgs e) …event and the item is added to the listbox again with a new name! File.Move(… listbox Programming Software Development by warne … i have a textbox, button and listbox. when the form is loaded the listbox will be loaded with some integer values… the access database. For example , these are the items in listbox : 2424 , 4567 , 2325 and so on...Now what i… and click the button, this particular number in the listbox should be highlighted with Red Color automatically.How can i… Re: Listbox Programming Software Development by Comatose I think a listbox is a bit more difficult to work with.... If I'm not mistaken, you'll have to do it all manually, such as using the "additem" property of the listbox..... you can use the sendmessage API call to force the listbox to use columns and keep the data orderly, but I think a listview would suite your needs better. Listbox Help Programming Software Development by purplegerbil … Filename, Unique Code The Unique code is displayed in a listbox. All three values are stored within arrays. When the user… position so when the user saves the info from the listbox, all the related fields are saved as well. Hope this… looks like that only stores one value for the whole listbox. pG Listbox help Programming Software Development by wwillow … appreciated. I'm displaying lines from a file in a listbox and I'm highlighting each line according to a timer…. I don't want any user clicking in the listbox, but when I set list1.enabled = false, the text grays… didn't work. Should I be using something besides a listbox to display the file contents? listbox Programming Web Development by Pooja J. … have one form with textfield and multiple selection listbox. i select multiple values form listbox, implode it with comma and put all… function . i want to put all array's values in listbox , but with selected, so that the user can get an… Re: listbox Programming Web Development by urtrivedi … this array contains all master values to be shown in listbox $mywholearray[0]['id']='pkvalue', $mywholearray[0]['desc']='description', */ /*set $myselarray…]['id']='pkvalue' */ $elementstring ="\n<SELECT id='listbox' size=10 name='listbox' multiple>"; for ($i=0;$i<count… Re: listbox Programming Web Development by Pooja J. …. I have one php form with Name(textbox) and multivalue listbox with values mumbai, pune, nasik, surat, dhule. It work when… working. But the problem is that, I want listbox on another page, this listbox should display the name of all cities, but… Listbox Programming Web Development by TIM_M_91 …they click a button which produces their results in a ListBox. However what I want to do is when the user…button it produces the results on another page in a Listbox. I have been able to get the session to work… with a textbox but not a listbox. Code: page1: using System; using System.Collections.Generic; using … Re: listbox Programming Web Development by muralibobby2015 … working. But the problem is that, I want listbox on another page, this listbox should display the name of all cities, but… Re: listbox Programming Software Development by kenny22 … triggers fileSystemWatcher1_Changed event and the item is added to the listbox again with a new name! File.Move(_FileName, "c… Re: listbox Programming Software Development by kenny22 ….SelectedIndex; // added a catch to stop error when clicking on listbox with no entries in it try { string itemText = this.listBox1… Re: listbox Programming Software Development by taurgis listBox1.SelectedItem = "4567"; As for changing the color you will need to have to make a custom drawing handler. [url]http://www.dotnetspider.com/resources/29277-c-NET-Multi-Colour-Listbox-items.aspx[/url] Re: listbox Programming Software Development by Mitja Bonca So you wanna have n numbers of listboxes - depending how many subfolder you go into. Isnt this a bit strange? It would make sence to show on 1st listbox folders and in 2nd listBox files in this folder (if you are on root - C:, D: then show files from the root in 2nd listbox). Wouldnt that make more sence? Re: Listbox Programming Software Development by Jx_Man …want to display data in textbox when you select listbox but you never get *eftn* and *namn* … rs("Namn")` So, split selected item on listbox before querying it to database : Dim temp() As String…' spliting by space ' temp(1) will contain eftn from listbox and temp(2) will contain namn from lisbox Set rs… ListBox Programming Software Development by gracea … one , the unattempted question should be immediately displayed in a listbox next to the panel where the questions appear, as a…, the unattempted questions reappear, thus making replicate entries in the listbox. my efforts at removing repeated entries are being ‘rewarded’ by… Listbox Programming Software Development by osean hi, i created a listbox[code] List list = new List(); list.addItem(".....:P"); ….makeVisible(1); setVisible(true);[/code] how can i make the listbox enabled (readable, but not disabled), so the user can't… listbox-can anyone help me?? Programming Software Development by fsemilla … be placed in the .rss file as shown below...*****/ RESOURCE LISTBOX r_demo_listbox { flags = EAknListBoxSelectionList; array_id = r_demo_listbox_items; } RESOURCE ARRAY r_demo_listbox_items {… wherein i dont know where to place it ************/ // create listbox instance CEikTextListBox* list = new (ELeave) CAknSingleStyleListBox(); // set… Re: Listbox help Programming Software Development by QVeen72 Hi WWillow, Keep it Simple, Place The ListBox On the Frame, And Disable the Frame , Enable the List Box, ur job will be done. Regards Veena listbox Programming Software Development by mangal123 i want to do accessing files and folders in listbox and when i click in any folder then thier subfolder displayed in other listbox ......... reply sooooon ....................... magdy ....................... listbox Programming Software Development by ng5 I have two different forms. one has a listbox and the other has a masked textbox. the masked textbox is used as a login and i would like the masked textbox to be checked against the listbox items to be able to "gain access" and login Any ideas? Re: Listbox Programming Web Development by nakor77 this looks like everything is in one page? Where is your code for the second page? How are you trying to load the ListBox on the other page? Re: Listbox Programming Web Development by JorgeM I believe that your problem is the session variable is not storing the value of a simple string. The label1.text property can not be assigned the value of that session variable. Instead of using a label control, why aren't you using a listbox on the second page. Re: Listbox Programming Software Development by Dark_Omen Have to add an eventListener to your code so you can use it. Take a look at my calc app i made for a project, I used a listbox. Re: Listbox Programming Software Development by Dark_Omen o yeah, you can also look at the java api, it's very useful to figure out how to make objects work. Here is the one for the listbox: [url="http://java.sun.com/j2se/1.5.0/docs/api/java/awt/List.html"]http://java.sun.com/j2se/1.5.0/docs/api/java/awt/List.html[/url]