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
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