Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Fill a list view
Message
 
To
15/07/2005 19:54:19
General information
Forum:
ASP.NET
Category:
Forms
Environment versions
Environment:
C# 1.1
OS:
Windows Server 2003
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01033186
Message ID:
01033250
Views:
18
I will review the method you provided,

I did this for now, which i'm not sure how efficient it is, but it seems to be ok;

DataView dv = new DataView(search.Tables[0]);
foreach (DataRowView drv in dv)
{
this.listBox1.Items.Add(drv["item"].ToString().Trim() + " - " + drv["itmdesc"].ToString().Trim());
}
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform