VisualStudio 2003

  • Thread starter Thread starter Anthony DePinto
  • Start date Start date
A

Anthony DePinto

Is there any way to have VisualStudio stop modifying code behind files
automatically? I'm trying to change the base case and add a handler
in the InitializeComponent Sub and VS keeps wiping out the code I
place in this sub whenever I touch the page visually.
 
InitializeComponent is meant to be used by the VS designer, and it
regenerates it all the time. Put your code elsewhere.
 
Back
Top