User:Null.Public/Temp1
From Wikipedia, the free encyclopedia
VB.NET Coding
Creating Custom Controls Add a new class to the current project. Inherit from the desired control. Build project and the new control appears in the toolbox.
ex. Public Class CheckButton
Inherits CheckBox End Sub
End Class