I am trying to learn Visual Basic with the guidance of some YouTube Tutorials. They have recommended the use of Microsoft Visual Studio Express 2013 as it has a built in compiler. I encountered a problem where my toolbox bar on the left of my screen is empty. Does anyone know how to fix this? http://gyazo.com/328ade3754613c971dd6d4745a0ed171 This is a link to my screenshot.
Asked
Active
Viewed 1.6k times
4 Answers
3
Your code may be running. Make sure to stop all processes and view the toolbox again.

Spencer Pelton
- 31
- 2
2
On Visual Studio C++ 2012, it also happen sometimes. Try, to right click inside the Toolbox dialog and click on "Reset Toolbox" item. It should solve your problem.
See same question: How to rebuild the Visual Studio Toolbox?
-
Sorry that it doesn't work. Perhaps, you could try to reset your VS settings ("devenv /ResetSettings"). See this post: http://ruchirac.blogspot.fr/2012/06/reset-visual-studio-user-settings.html – Francois Oct 12 '14 at 13:12
0
What you need to do is to open your code in [Design] view. In this view you don't see the code as text, but rather as windows and buttons and so on.
Choose your favorite way to switch to the [Design] view :
A. View > Designer
B. Shift + F7
C. In the Solution Explorer window double click Form1.cs
Source: How do I open a Visual Studio project in design view?