Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Dynamically populating a winform grid with xml
Message
Information générale
Forum:
ASP.NET
Catégorie:
Formulaires
Versions des environnements
Environment:
VB 8.0
OS:
Windows XP SP2
Network:
Windows 2000 Server
Database:
MS SQL Server
Divers
Thread ID:
01211269
Message ID:
01211273
Vues:
18
In vfp, I can read an xml document into a cursor and display the grid in a form, with about three lines of code. How would you go about doing this in vb.net using winforms, webforms, or any other facet of dot net? Yeah, I know, I'm finally poking the bear.

Aren't there laws against that? ;)

Not sure how simple you need it, but let's try this one:
DataSet dsMyData = new DataSet();
dsMyData.ReadXml(@"c:\myxmlfile.xml", XmlReadMode.InferSchema);
myDataGrid.DataSource = dsMyData.Tables[0];

myDataGrid.DataBind();   //  you'll need this for webforms
Let me know if that helps, or if you need something a little more elaborate.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform