How can I create my own components in VB.NET?

How can I create a component that is in the component tray, for example Timer? So that they can be placed on the toolbar, they are not visible in the form. Hope this is possible.

+4
source share
1 answer

You just need to create a class that inherits from System.ComponentModel.Component

+1
source

All Articles