![]() |
how to separate data in the list view
I have create a list view which contains 4 columns
I write the code below: ListViewBookRecord.Items.Add(( dr["bookname"].ToString())); ListViewBookRecord.Items.Add(( dr["authorname"].ToString())); ListViewBookRecord.Items.Add(( dr["booktype"].ToString())); ListViewBookRecord.Items.Add(( dr["price"].ToString())); Then all the data fill at the first columns I want the different data fill at the different column How should I do in order to put the data at the different column? Thank You |
Re: how to separate data in the list view
You have to add them as subitems of the currently added item.
|
Re: how to separate data in the list view
Yes,
|
Re: how to separate data in the list view
Yes,I have tried this:
ListViewBookRecord.SubItems.Add(( dr["ID"].ToString())); But it say that 'System.Windows.Forms.ListView' does not contain a definition for 'SubItems' |
Re: how to separate data in the list view
Here is the code for you to add sub items to the list view in C#
Code: C#
|
Re: how to separate data in the list view
Thank You
|
| All times are GMT +5.5. The time now is 07:43. |