Hi all,
I have forms and i added a Modules to Initialize all my Forms (change color, font and more).
Now i want to add code Inherits all my form to System.Windows.Forms in my Modules

Example:
Form 1
Code:
Public Class Form1
    InitializeForms(Me)
End Class
Code:
Public Class Form2
    InitializeForms(Me)
End Class
Code:
Public Sub InitializeForms(ByRef Sender as Object)
    'Code to add Inherits Command [Inherits System.Windows.Form]
End Sub
How can i do this ?