Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Fill a list view
Message
 
À
15/07/2005 19:54:19
Information générale
Forum:
ASP.NET
Catégorie:
Formulaires
Versions des environnements
Environment:
C# 1.1
OS:
Windows Server 2003
Network:
Windows 2003 Server
Database:
MS SQL Server
Divers
Thread ID:
01033186
Message ID:
01033250
Vues:
17
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());
}
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform