vincentnl
Freshman
I am usging VB .net
I have a base form that has mustoverride 's and thus mustinherit in the class definition.
If i inherit from this class
The designer (the thing in the IDE that let's you edit in WYSIWYG mode on forms) gives an error, for it tries to make an instance of basicform. I know it is an abstract class, just inherit from it, and show my switchboardclass !
How can this be fixed or worked around?
Is it clear what i am asking?
I have a base form that has mustoverride 's and thus mustinherit in the class definition.
Code:
Public MustInherit Class BasicForm
Inherits System.Windows.Forms.Form
If i inherit from this class
Code:
Public Class SwitchBoard
Inherits BasicForm
The designer (the thing in the IDE that let's you edit in WYSIWYG mode on forms) gives an error, for it tries to make an instance of basicform. I know it is an abstract class, just inherit from it, and show my switchboardclass !
How can this be fixed or worked around?
Is it clear what i am asking?