Inherits Forms in the same project error

  • Thread starter Thread starter Mat
  • Start date Start date
M

Mat

I would like to inherits some form in the same project. forms take
arguments.
but designer generate error:-(

does any one have experience with that?
 
Mat said:
I would like to inherits some form in the same project. forms take
arguments.
but designer generate error:-(

does any one have experience with that?

The base Form _must_ have a constructor without arguments. Otherwise the
designer can't create it in order to display it because the designer can not
know which arguments should be passed to the constructor.
 
Back
Top