ProtocolPirate
Programmer
The VS.NET IDE destroys my projects on a regular basis, but usually I can painfully reconstruct the forms and then copy the code over to a new project. This time every new project I create promptly destroyes itself in the same manner as soon as I set up the forms and copy over the code. It DID work just *fine* until I made a few slight changes, and then it started autmoatically adding an Application.Designer.vb file and blows up on the following code:
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
Protected Overrides Sub OnCreateMainForm()
Me.MainForm = Global.Envelope_Address_Printing.Form1
End Sub
It blows up on the assignement, with an exception of "A startup form has not been specified." Naturally the code is somehow undebuggable so I can't even view the Global and Me variables in the watch window.
Any suggestions on how I can recover this project?
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
Protected Overrides Sub OnCreateMainForm()
Me.MainForm = Global.Envelope_Address_Printing.Form1
End Sub
It blows up on the assignement, with an exception of "A startup form has not been specified." Naturally the code is somehow undebuggable so I can't even view the Global and Me variables in the watch window.
Any suggestions on how I can recover this project?