I have a 3 level inheritance.
class Level1 : System.Windows.Forms {}
class Level2: Level1{}
class Level3 : Level2 {}
in the load event from Level1 I call a overidable method, that in Level2 is override and in this I make some initialization for information on the form, DataBinding and one SqlDataAdapter, but when I whant to see the designer for the Level3 the designer show me errors, why?
If this a problem in my whay of programming or must placed an attribute before the method, please write my what I must write.
Thanks,
Claudiu