|
-
September 27th, 2005, 02:07 AM
#1
Problem while debugging
While trying to debug the code, we have a number of DLL that are included in the project and we get the messge as "Loaded symbols for C:\WINNT\System32\......" . I found it very strange but one of the DLL was being picked from E:\WINNT\System32, since this path was not present the debugging was giving me an error that the DLL is not found. I created this path and copied the DLL in the folder , this resolved the issue and now .. the code that comes now is..........
Loaded symbols for 'C:\WINNT\system32\OLEPRO32.DLL'
Loaded symbols for 'C:\WINNT\system32\MSMAPI32.ocx'
Loaded symbols for 'C:\WINNT\system32\RNR20.DLL'
Loaded symbols for 'C:\WINNT\system32\MSAFD.DLL'
Loaded symbols for 'C:\WINNT\system32\WSHTCPIP.DLL'
Loaded symbols for 'E:\WINNT\system32\RPCLTC1.DLL'
Loaded symbols for 'C:\WINNT\system32\DBNMPNTW.DLL'
You can see that the DLL RPCLTC1.DLL is being picked up from E drive.
Why is this happening ? How can we change the path ?
Any help is appreciated.
Thanks
Parth
-
September 27th, 2005, 02:34 AM
#2
Re: Problem while debugging
Take a look at Tools, Options, Directories, Executable Files. Perhaps E:\WINNT\system32\ is added there.
-
September 27th, 2005, 05:12 AM
#3
Re: Problem while debugging
I checked this option, but no E:\ was included in this option. I only have C:\ for all the inclueds in this option
-
September 27th, 2005, 08:15 AM
#4
Re: Problem while debugging
You may have a registry entry which is telling another loaded object where to try and load the DLL from.
Please use meaningful question titles - "Help me" does not let me know whether I can help with your question, and I am unlikely to bother reading it.
Please remember to rate useful answers. It lets us know when a question has been answered.
-
September 27th, 2005, 08:35 AM
#5
Re: Problem while debugging
Verify also if somehow:
- 'E:\WINNT\system32\RPCLTC1.DLL' is added at Project Settings\Link\Object/library modules, or
- #pragma comment(lib,"E:\\WINNT\\system32\\RPCLTC1.DLL") is written somewhere in source code.
-
September 28th, 2005, 12:26 AM
#6
Re: Problem while debugging
The only thing in the link tab of the setting is mnbname.lib ntwdbLib.Lib and paths are specified.
Also i checked the code for any #pragma the only thing i could fine is #pragma once written in many pages and #pragma code_page(1252) written in the resource file. Since the code has not be written by been so i don't have much idea on what the second pragma statement does.
I searched in the code and no where is E:\WINNT\ written .......
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|