| | |
Multi Column List Boxes
Please support our VB.NET advertiser: Intel Parallel Studio Home
Thread Solved |
•
•
Join Date: Jul 2008
Posts: 86
Reputation:
Solved Threads: 0
Hello everyone. I would like to learn how to make a multi column list box. I have set the multi column Boolean to true and set the width but i have yet to see the two columns. I only see one.
I currently have a .csv file and in the format of:
Id, Name
I would like the listbox to have a column for Ids and Names. How would i be able to achieve this?
I currently have a .csv file and in the format of:
Id, Name
I would like the listbox to have a column for Ids and Names. How would i be able to achieve this?
Last edited by jhonnyboy; Mar 31st, 2009 at 2:16 pm.
Multi column listbox doesn't actually show items in multiple columns. It "wraps" items to the next column when you add them and the number of the items reaches the listbox's height.
If you want to show items in two columns, you'll have to use some grid control or listview control.
Here's an example with listview control
If you want to show items in two columns, you'll have to use some grid control or listview control.
Here's an example with listview control
VB.NET Syntax (Toggle Plain Text)
Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click ' Dim TempStr(1) As String Dim TempNode As ListViewItem ' Show "hidden" text ListView1.ShowItemToolTips = True ' Set columnar mode ListView1.View = View.Details ' Set column header ListView1.Columns.Clear() ListView1.Columns.Add("UserID", 80) ListView1.Columns.Add("Name", 120) ' Remove previous items ListView1.Items.Clear() ' Add two items TempStr(0) = "1111" TempStr(1) = "Doe, John" TempNode = New ListViewItem(TempStr) ListView1.Items.Add(TempNode) TempStr(0) = "2222" TempStr(1) = "Doe, Jane" TempNode = New ListViewItem(TempStr) ListView1.Items.Add(TempNode) End Sub
Teme64 @ Windows Developer Blog
![]() |
Similar Threads
- C++ Multi-Column Listbox (C++)
- The most famous CSS web sites galleries in the world (HTML and CSS)
- Insert Selected data In MySQL (PHP)
- cant acess some websites and some programs wont connect to the net. (Viruses, Spyware and other Nasties)
Other Threads in the VB.NET Forum
- Previous Thread: StreamWriter Is Overriding Already Written Items in File
- Next Thread: Starting a Program using VB Module
| Thread Tools | Search this Thread |
Tag cloud for VB.NET
.net 30minutes 2005 2008 access account application arithmetic array arrays basic binary bing button buttons c# center check checkbox code combobox component connectionstring convert crystalreport data database databasesearch datagrid datagridview design dissertation dissertations dissertationthesis dropdownlist excel file-dialog folder ftp generatetags google gridview hardcopy image images inline insert intel internet listview mobile monitor ms net networking output passingparameters peertopeervideostreaming picturebox picturebox1 plugin port print printing problem problemwithinstallation project reports" save searchbox searchvb.net select serial server soap sorting table tcp text textbox timer toolbox trim update updown user vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb2008 vbnet view visual visualbasic visualbasic.net visualstudio visualstudio2008 web wpf





