Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to see designer code in vb.net

Tags:

vb.net

i want to see the designer code .. i want to see how myForm is generated using or extending form

i mean in C# i can see the code in designer.cs file...but in vb.net i am nt able to see that..

like image 922
shraddha Avatar asked Dec 27 '09 17:12

shraddha


People also ask

How do I view designer VB files?

You have to click the "show all files"-Button. Then you can also see the Designer. vb-files.

How do I view designs in Visual Studio?

Show activity on this post. From the Solution Explorer window select your form, right-click, click on View Designer. Voila! The form should display.

How do I show a form in Visual Studio?

Click on the tab for the second form (the subForm) in your design and double click on the button control to display the Click event procedure. Press F5 to build and run the application. Click on the button in the main form to display the sub form. Now, when you press the button in the sub form, the form will be hidden.


1 Answers

In VB.Net, in order to see the designer files, you have to click the toggle button above the solution explorer (show all files).

like image 188
Gabriel McAdams Avatar answered Nov 16 '22 02:11

Gabriel McAdams