DataSet autogenerated file error?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

when i make a new DataSet class, the autogenerated vb file has an error in
it. what it does is tries to make a class named DataRow that inherits from an
already existing class named DataRow, and so i get the error 'DataRow: Cant
inherit from itself' or something similar...

is this a bug?
i am using VS.NET 2002
 
"Dave Cousineau ( Sahuagin )"
when i make a new DataSet class, the autogenerated vb file has an error in
it. what it does is tries to make a class named DataRow that inherits from
an
already existing class named DataRow, and so i get the error 'DataRow:
Cant
inherit from itself' or something similar...

is this a bug?
i am using VS.NET 2002
Do you have an XSD element called "Data"? If so you may need to apply a
codegen:typedName attribute so the generated row type is not called
"DataRow".

David
 
Back
Top