Form1 which inherits from your base form should also have a three-parameter
constructor which just forwards it to the base class constructor.
Form1 constructor:
Sub New(param1, param2, param3)
{
MyBase(param1, param2, param3)
}

Signature
Joey Calisay
http://spaces.msn.com/members/joeycalisay/
> Hi All
> I would be grateful for help with this learning problem
[quoted text clipped - 14 lines]
>
> Roger Stenson.