Code:
    Public Class aaMyForm
    Inherits Windows.Forms.Form
Added some controls. Build it, add the .DLL as reference to my other project.
In my other project:

Code:
    Imports MyLib
    Public Class XForm
    Inherits aaMyForm



The events from aaMyForm execute correctly but the controls added to it are not shown on XForm. I have found some info about set Modifiers Protected in order to be able to change the functionality of the controls but havent found anything about why the controls aren display on the XForm.