Hi,
I tried to make an application, but had some trouble with the inheritance. I opened a new Windows Form Application Project, added Class1:
Code:
Public Class Class1
    Inherits Form
End Class
And then added Class2:
Code:
Public Class Class2
    Inherits Class1
End Sub
But I got an error. Anybody know what's wrong with my code?