How to make a new form design?
Hi guys. I've been thinking how to make a new form design which it will be accessed in the "New Item" as a new form.
I would like create so I wouldn't repeat all over again..
You'll need inheritance for this. Make a shell class and just work from there
[highlight=vb.net]
Public Class CustomForm : Inherits Form
'Has all the "Form" class's methods,events,properties...etc already done
End Class
[/highlight]