KE
Ken
April 25, 2003 01:54 PM UTC
I can answer for Windows forms in VB.NET...
When you add the form to your project, add it as an inherited form. Your base form should automatically appear on the list of components to inherit from.
Or, in the code you just specify that the form should inherit from your base form rather than System.Windows.Forms.Form. For example:
Public Class MyForm
Inherits MyProject.MyBaseForm
instead of
Public Class MyForm
Inherits System.Windows.Forms.Form
HTH,
Ken