How to MANUALLY create a TableAdapter
Hi,
I use a VB.NET application that connects to a Web Service I made.
The Web Service is responsible to collect data from an Online database and send it to the Windows application. It's also responsible to GET new data from the application and Update the Online database.
The Web Service works fine. My question is in the application. I created a Dataset that GETS a dataset from the Web Service. Now I want to USE that data in the application. I am having trouble with both DataRow and TableAdapter. (I don't want to add any DataSource in my application, so I can't use any wizards.
1. I can't create a NEW DataRow. I get the following error:
Dim dr As New DataRow (It tells me that it is not accessible in this context because it is protected)
2. I can't create a TableAdapter. Just can't find it in the toolbox and it's not an option in the VS drop-down when I do Dim ta As New... So How can I get data from the DataSet into a DataRow? (I know we must have an Adpter because the DataSet doesn't have references to the data points.)
Thank you

