Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Dynamically populating a winform grid with xml
Message
General information
Forum:
ASP.NET
Category:
Forms
Environment versions
Environment:
VB 8.0
OS:
Windows XP SP2
Network:
Windows 2000 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01211269
Message ID:
01211292
Views:
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.

Well, it sorta did. I'm using vb.net so I had to change some of the syntax and add the imports system.xml and it almost worked. It did render a grid with one column. In vfp, it rendered three columns, but even then it glommed some of the stuff together. Is there a comparable entity in dot net for fcount() and if so, how would you deal with that in code?

Thanks again for the pointers.
John Harvey
Shelbynet.com

"I'm addicted to placebos. I could quit, but it wouldn't matter." Stephen Wright
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform