Reputation: 14071
Issue: Breakpoint will not be hit because no symbols have been loaded
Thanks to helpful fellow users I found out how to debug controls at design time: I have to start a 2nd instance of VS2010. Unfortunately, when the 2nd instance of VS2010 starts, it will load all kind of symbols, but exactly not the ones from my project.
In the modules window, I can see that the 2nd instance of VS2010 loads different modules, but I cannot find the dlls from my project. Unfortunately, I have no idea how I would reference them, because in the original project they are - of course - included. And from there I do start the 2nd instance when debugging.
I have tried the following:
Any idea how to tackle this issue?
Upvotes: 3
Views: 3824
Reputation: 35721
I have fought that battle quite a few times, so here's some things you might want to check:
Have you tried to manually load the symbols in the debugging instance? (Right-click in the Modules window, point to Load Symbols From).
Upvotes: 2