q; data to table

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

The following code get the data from a web service and show it on the data
grid in my application. How can I put data into the table which has the same
structure as ds in my database? I am new vb.net any code example will be
greatly appreciated.

Dim ds As MyWebService.FetchDataSet
ds = FetchData()

With Me.myGrid
.DataSource = ds
.DataMember = ds.MyTable.TableName
End With
 
My code is already doing that, how can I put the data (which I received from
Web Service) to my table,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top