Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

http xml output into a dataset VS2005 beta 1 or 2

Status
Not open for further replies.

SeaweedOPM

Technical User
Nov 19, 2004
53
0
0
US
I'm trying to get the xml returned from an http query request into a dataset.

It works with this:

Dim path As String = " Dim ds As New DataSet

ds.ReadXml(path)
GridView1.DataSource = ds
GridView1.DataBind()

But that only works sometimes; I think it is because of load time...? And when I try to run this path " it deffinatly doesn't work because it takes a few seconds to load. Is there a way to stall the load or even use a timer to make it work?

I really want to do this within a windows forms app and not a asp.net app. Thx
 
While the title of this forum is rather generic - Visual Basic (Microsoft) Databases - it is generally a place where questions about VB 5 and 6 and databases are answered. You didn't do anything wrong by posting a VB .NET question here, its just that I think you will get a much faster - and probably better - response to your question in the VB .NET forum: forum796

Good luck!

I used to rock and roll every night and party every day. Then it was every other day. Now I'm lucky if I can find 30 minutes a week in which to get funky. - Homer Simpson
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top