quick question, how to view the "more specific" code

j00sh

Active member
Joined
Mar 29, 2007
Messages
35
Programming Experience
Beginner
I need to view the code that the compiler writes, I have gotten there before by accident but now I actually need to see it.
 
Compilers dont write code.. they compile it into IL. I assume that you dont actually want to see this, but you want to see the code the IDE generates for you in e.g. a form or a dataset..

Click the Show All Files button on the solution explorer (point to each and read the tooltip)

Then open the relevant XXX.Designer.vb file

Dont alter anything; your changes will be destroyed the next time the file is generated
 
Back
Top