I used Visual Studio for the codes of my C # project for a while, everything seems to be fine until today, I modified the code from C # File Browser and use it in my project as a component. After that, I canβt change the window shape icon (just as I did with other ways to win), when I look at the icon file, Visual Studio stops working. Moreover, while I am debugging with a window form that has a file browser, I try to test the function by viewing the file after I view the VS file, also stops working. Moreover and moreover, VS stops working on its own without any action on my part. Does anyone know where to look for a cause or how to solve it.
I solved the problem with the icon using
this.Icon = new System.Drawing.Icon("icon.ico");
and set the image properties:
Build Action: Content Copy to output Directory: Always
After I installed Service Pack 1 (SP1) for VS 2010, the icon problem can be resolved, I can view the icon file in the properties, but the other debugging failure is still the same, and I have
exited with code -2147483645 (0x80000003).
which are apparently the cause of the browser file library
source share