Hi,
I generated a strongly typed dataset, and genrated ProductRow with the TaableAdapter.
I need to implement a class inheritedProductRow that inherits from the productRow class, then I wanna implement the Sub New method for my inheritedProductRow class.
Can u give me a code example for doing that pls. Because when I do this:
Imports myDataSet
Public Class inheritedProductRow
Inherits productRow
Public Sub New()
End Sub
End Class
I get an error saying: Sub New in Base Class can not be called with no arguments or somethiong like that
Can u help me pls




Reply With Quote