Reputation: 201
I have a custom control DLL. How can I add these custom controls to VS2008 tool box programatically?
Upvotes: 20
Views: 49677
Reputation: 2813
In my Visual Studio 2019 I don't get any "choose items" when right-clicking "Toolbox".
I had to use Tools
/ Choose Toolbox Items
Upvotes: 2
Reputation: 12367
There are several ways to do it:
As explained at MSDN Tutorial: Installing Controls By Using the Toolbox Controls Installer you do it from an installer.
There's also another possibility using a command line program available on CodePlex. You use this application with your favorite installer or you can invoke it manually.
Upvotes: 3
Reputation: 101194
Upvotes: 47