Rob,
I've used the Data Source Configuration Wizard to create a MyDataSet.xsd,
but I'm lost on how to get anything out of the .xsd into a workable
ADO.NET dataset?? Any suggestions?
Because you are talking about the Data Source Configuration Wizard I assume
it is 2005.
Drag than from your toolbox in the tab 'Data' a datagridview on a form
Select propeties from that and take there the property datatasource
Click on the empty box and go down opening the +'s and select the table
Debug.
You will see the table that you have selected.
While doing this, this the designer part is changed.
In the dataset itself is in the version 2005 all code to handle the fills,
updates or whatever which you can use in your code.
If it is VB Net than this code is already generated for you to get the
dataset.
'TODO: This line of code loads data into the 'NorthwindDataSet.Employees'
table. You can move, or remove it, as needed.
Me.EmployeesTableAdapter.Fill(Me.NorthwindDataSet.Employees)
I hope this helps,
Cor