About 10,300,000 results
Open links in new tab
  1. Binding Listbox to List<object> in WinForms - Stack Overflow

    Dec 11, 2020 · What's the simplest way to bind a Listbox to a List of objects in Windows Forms?

  2. How can I add an item to a ListBox in C# and WinForms?

    The Method ListBox.Items.Add () takes an Object ListBoxItem seems only to exist as a wpf control Since the question was about winforms () i assume that your method above is valid only for a …

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

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

  4. 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, 8 months ago Modified 5 years, 2 months ago Viewed 67k times

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

    20 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 …

  6. How to set ListBox1.RowSource property? - Stack Overflow

    Sep 17, 2018 · I have an Excel workbook with 16 sheets. I want a listbox on my userform which will list the data in Sheet 1 Cells F2 to F50. My code Private Sub UserForm_Initialize() …

  7. What is The difference between ListBox and ListView

    Jan 16, 2011 · A ListView is basically like a ListBox (and inherits from it), but it also has a View property. This property allows you to specify a predefined way of displaying the items. The …

  8. How to get selected value in multicolumn listbox - Stack Overflow

    Aug 31, 2016 · 8 I have a multicolumn listbox in my userform and I would like to get all the values of the elements which are in the selected row in the listbox. Here is my userform: Just like in …

  9. excel vba listbox additem - Stack Overflow

    I tried looping through my data range and putting each item in using listbox.additem (mydata ()) with the same result. On examination of the listbox prperties AddItem is not there. Seems they …

  10. 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 = …