Reputation: 2442
I am using visual studio 2015. I have my toolbox open and I checked on Show All. I unchecked this an now my entire toolbox is empty except for the General Tab (which there is nothing in). I tried resetting the toolbox but that did not fix the problem. Has anyone encountered this before? If so, what was the fix? Thanks.
Upvotes: 31
Views: 75686
Reputation: 553
I fixed this by just stopping the program from running; if you are running your app to test it, the toolbox will be empty/unshown until you stop the debugger!
Upvotes: 1
Reputation: 31
In the case of an SSIS toolbox not appearing. On the top ribbon menu click on View -> Other Windows -> SSIS Toolbox, this will show the toolbox with SSIS related items.
Upvotes: 3
Reputation: 71
I had the same problem. I solved it by right-clicking on the Design window and adding " Toolbox" (SSIS Toolbox in my case).
Upvotes: 7
Reputation: 259
I have that problem still after using repair in VisualStudio Installer. But I found a solution here: https://thinkaboutit.be/2012/10/my-toolbox-is-empty/
The localization off that files can be in different places, for VS 2022 I found some hidden files here:
C:\Users\YourUserName\AppData\Local\Microsoft\VisualStudio\17.0_dbab3d69
Deleting those files and restarting VS solved the problem.
Upvotes: 25
Reputation: 606
Try right clicking in the toolbox and select 'show all'.
You can also start /reset
From your description, it seems that your issue might be related with IDE. I suggest you to try to execute the following commands:
Devenv.exe /SafeMode
Devenv.exe /ResetSettings
Upvotes: 48
Reputation: 1
I just right-clicked on toolbox area and choose "show all" :) Now it works
Upvotes: -2
Reputation:
I had a similar problem(Visual Studio 2022). None of the solutions solved my problem. Eventually my problem was solved by repairing the visual studio.
Go to Start >> All Programs >> “Visual Studio 2022” >> “Visual Studio Installer”. Now, click Visual Studio Installer. After clicking repair options progress options open. The repair will take some minutes to complete.
Upvotes: 2
Reputation: 350
I just had the same thing happen to me in Visual Studio 2022 with a .NET 6 WinForms application. After updating VS 2022 to version 17.2.0, my Toolbox entries were blank when I tried to use them to drag and drop into the designer of a project I had just recently created in version 17.1.x.
I ended up fixing this by:
Upvotes: 29
Reputation: 3532
In Visual Studio 2019 you can just right click the dark area inside the toolbox and select "Reset Toolbox".
This will remove custom-added controls or any other auto-detected control, and you will be left only with the standard controls.
The issue should be fixed without completely reseting Visual Studio's settings.
Upvotes: 0
Reputation: 21
I don't know why this bug exists, but I fixed mine using the steps below:
Upvotes: 2
Reputation: 227
I encountered the same problem and solved it by:
toolbox components will be reloaded again
Upvotes: 1
Reputation: 1
In my case, I had opened with ctrl+alt+x. I noticed in the newer versions of VS, there is some confused crossover of toolboxes. In my case, it opened the SSRS toolbox, which was not applicable to my SSIS file.
Closed that, right-clicked in design area, and chose SSIS Toolbox. This opened a toolbox called "SSIS Toolbox" rather than just "Toolbox". All fixed.
Upvotes: 0