Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
ListView Items Not Showing
Message
From
08/08/2010 01:23:48
 
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Miscellaneous
Thread ID:
01475624
Message ID:
01475633
Views:
40
Your code looks ok Kevin ... are you sure you have data in those rows? Have you stepped through this code in the debugger? If so, check the lstTribals.Items.Count after you add a new item.

~~Bonnie


>I have a ListView on my form. It's View property is set to Details. I'm loading from a dataset:
>
>
>foreach (DataRow Row in dsTribals.Tables[0].Rows)
>{
>    if (Row["Price"] != DBNull.Value)
>    {
>        PartPrice = (decimal)Row["Price"];
>    }
>    ListViewItem NewItem = new ListViewItem(Row["TribalNumber"].ToString());
>    NewItem.SubItems.Add(PartPrice.ToString());
>
>    lstTribals.Items.Add(NewItem);
>}
>
>The code runs, but I see nothing in the list.
Bonnie Berent DeWitt
NET/C# MVP since 2003

http://geek-goddess-bonnie.blogspot.com
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform