Click here to Skip to main content
15,897,187 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Whenever I try to debug a VC++ 6.0 project in Visual C++ 2008 express edition which (the project) includes exported dll files it displays the following error:

"Debugging information for 'regsvr32.exe' cannot be found or does not match. Symbols not loaded."

Obviously the problem has got to be the debugger not being able to find or use some executable file required during the debugging process. By default it uses the regsvr32.exe but trying to change it to anything else gives an error too. What am I supposed to do as I am comparatively amateur at using VC++?
Posted

1 solution

Well, Regsvr32.exe is the windows tool that you use to register a COM server with. On first thoughts, it sounds like you may be registering a COM dll and are trying to single-step through that particular phase.

On further reading, it's not a problem - just ignore it and continue. The OS isn't generally released with debugging info - hence you can't find it.

See:
http://answers.yahoo.com/question/index?qid=20090917052206AAVRsKE[^]
http://stackoverflow.com/questions/2322876/debugging-information-cannot-be-found-or-does-not-match-visual-studios[^]
http://social.msdn.microsoft.com/Forums/is/Vsexpressvc/thread/3c77062f-9431-4f06-98db-24f7dd22ac28[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900