About 8,500,000 results
Open links in new tab
  1. How can I add an item to a ListBox in C# and WinForms?

    I'm having trouble figuring out how to add items to a ListBox in WinForms. I have tried: list.DisplayMember = "clan"; list.ValueMember = sifOsoba; How can I add ValueMember to the …

  2. Binding Listbox to List<object> in WinForms - Stack Overflow

    Apr 20, 2010 · What's the simplest way to bind a Listbox to a List of objects in Windows Forms?

  3. How to create a listbox in HTML without allowing multiple …

    I don't have much experience in HTML. I am looking to create a simple listbox, but one of the requirements is to DISALLOW multiple selection. Most of the code for listboxes goes like this - …

  4. C#: easiest way to populate a ListBox from a List

    C#: easiest way to populate a ListBox from a List Asked 14 years, 10 months ago Modified 6 years, 9 months ago Viewed 163k times

  5. How exactly do I create a multicolumn listbox in Visual Basic?

    How exactly do I create a multicolumn listbox in Visual Basic? Asked 9 years, 6 months ago Modified 5 years ago Viewed 67k times

  6. How to add headers to a multicolumn listbox in an Excel userform …

    Is it possible to set up the headers in a multicolumn listbox without using a worksheet range as the source? The following uses an array of variants which is assigned to the list property of the l...

  7. What is The difference between ListBox and ListView

    Jan 16, 2011 · Listview derives from listbox control. One most important difference is listview uses the extended selection mode by default . listview also adds a property called view which …

  8. VBA Excel Populate ListBox with multiple columns

    Nov 28, 2017 · This may be a cheap question for some but I'm totally confused on how to populate my listbox. Using this line I can populate the listbox as shown below: ListBox1.List = …

  9. c# - How to get listbox selected item value - Stack Overflow

    After selecting an item in the listbox, I tried the following to get the value: this.files_lb.SelectedValue.ToString() But all it returns is "System.Data.DataRowView". At this …

  10. Fill a listbox with an array in vba - Stack Overflow

    Does anybody know how can i fill a listbox from an array? I only know the method with: With Tabelle1.ListBox1 .AddItem "Versuch" End With i want to make a dynamic listbox but still have …