How do I debug my C++ DLL
I am having two problems-
1) I am having trouble deploying the compiled DLL to the emulator. I have added the DLL to the VB project and it is marked as content, but it is not being copied to the project folder in the emulator. This used to work in VS 2003. I have had to deploy the DLL from within the DLL project. This put it in a separate folder. I then copied it to my apps folder in the emulator. Can anyone tell me why it is not being deployed properly along with my vb app?
2) The bigger problem is that I haven't figured out how to debug the DLL. When I put breakpoints in the C code, they are ignored. I can break in the VB code. Somewhere, I read that I need to open two VS2005 apps, and use one to debug the DLL and the other for VB, but I can't figure out where I read that and haven't been able to get it to work. Anyone successfully debugged a combination of managed and unmanaged apps?
Thanks mucho for your help!

