D
Dom
I am building a fairly complicated program in the MS Visual Studio.
When it builds I get a warning:
"The designer must create an instance of type 'CardCatalogue.CCGrid'
but it cannot because the type is declared as abstract."
CCGrid is declared this way: "abstract public partial class
CCGrid : Grid"
and Grid is declared this way: "public partial class Grid :
DataGridView"
The program builds and runs fine, but it still worries me. How do I
handle this?
Dom
When it builds I get a warning:
"The designer must create an instance of type 'CardCatalogue.CCGrid'
but it cannot because the type is declared as abstract."
CCGrid is declared this way: "abstract public partial class
CCGrid : Grid"
and Grid is declared this way: "public partial class Grid :
DataGridView"
The program builds and runs fine, but it still worries me. How do I
handle this?
Dom