RowBuilder argument required?

  • Thread starter Thread starter Peter
  • Start date Start date
P

Peter

I am testing my fledgling attempt at using a typed dataset instead of the
usual untyped ones I use. Everything seemed to be going so well (and so
easy!), but then when I tried to create a new row, using

Dim MyRow as New Project.TypedDataSet.RowType(),

it told me the constructor needs a parameter "rb" of type DataRowBuilder.
What the heck is that? Why do I need it?
 
Peter said:
I am testing my fledgling attempt at using a typed dataset instead of the
usual untyped ones I use. Everything seemed to be going so well (and so
easy!), but then when I tried to create a new row, using

Dim MyRow as New Project.TypedDataSet.RowType(),

it told me the constructor needs a parameter "rb" of type DataRowBuilder.
What the heck is that? Why do I need it?

I think I was going about that the wrong way.

Dim MyRow As TypedDataSet.RowType = DataSet.Table.NewMyRow

worked out fine.
 
Back
Top