c# - Start Debugger in Code -
I need to debug an application that was started from one-click install. (VS 2010, Excel VSTO Office 7). Based on the login credentials given to the one-click installer application, the user should be shown one of two splash pages. All of this works fine on my machine, but when deployed, the result changes in error from default to second slash page.
For my life, how can I debug the process from within VS2010, I can attach to the login before entering the credentials, but I can not add Excel because it does not launch until I have not clicked okay button until it is done.
So, is there a way to get excel, or instead, my code calls the debugger because it is so instant, so I can understand why my image processing is not available in the deployed application. ?
thanks
randy
system Diagnostics. Debugger. Launch ();
Comments
Post a Comment