Link to home
Start Free TrialLog in
Avatar of tora111
tora111

asked on

Using xsd created from Data Sources

I have used Data Sources to create a xsd from a MDB table. I want to use the xsd as a datatype.

For example:

Dim Order as New OrderDataSet.OrderRow  ( where 'OrderDataSet' is a xsd created by Data Sources, so that I can refer to the columns like below )

Order.OrderNo = "#1"
Order.Date = "...."
....

However,  it shows this error "Argument not specified for parameter 'rb' of 'Friend Sub New(rb As System.Data.DataRowBuilder)" at the 'Dim Order....' statement!

So how can I use a xsd as a datatype to create a variable ?

ASKER CERTIFIED SOLUTION
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of tora111
tora111

ASKER

Thanks Bob !