Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

dll loading problem....

Status
Not open for further replies.

vcplearner

Programmer
Sep 28, 2005
10
US
Hi all,

I find so many (800 or so) questions on this in the Internet, but no response!

When I execute my program, it hangs with nothing in the output (o/p) window...however, when I run it in the debugger mode and see the o/p window here is a bit of what I get....

Loaded 'ntdll.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\kernel32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\ole32.dll', no matching symbolic information found.
..............
..................
...............

Loaded 'C:\Program Files\Common Files\Microsoft Shared\OFFICE11\MSOXMLMF.DLL', no matching symbolic information found.
First-chance exception in Client.exe (KERNEL32.DLL): 0x80004002: (no name).
First-chance exception in Client.exe (KERNEL32.DLL): 0x80004002: (no name).
First-chance exception in Client.exe (KERNEL32.DLL): 0x80004002: (no name).
First-chance exception in Client.exe (KERNEL32.DLL): 0x80004002: (no name).
................
....................
Loaded 'C:\WINDOWS\system32\dbghelp.dll', no matching symbolic information found.
InitEvents(), succeeded
TraceServerMem::Init(), Initializing trace sever memory
RegisterVar, registered mod var: pdwSharedVar, mod: ERDSUtil, id: 1, adr: 0x1ee5404
Register Process,Start loop
RegisterProcess(), succeeded: process: DWUtil, share: Trace-0
..............................
..............................
.................................
Loaded 'C:\Program Files\Common Files\System\msadc\msaddsr.dll', no matching symbolic information found.
First-chance exception in Client.exe (KERNEL32.DLL): 0xE06D7363: Microsoft C++ Exception.
First-chance exception in Client.exe (KERNEL32.DLL): 0xE06D7363: Microsoft C++ Exception.
Loaded 'C:\WINDOWS\system32\dbnmpntw.dll', no matching symbolic information found.
The thread 0xB84 has exited with code 0 (0x0).
Loaded 'C:\Program Files\Common Files\System\Ole DB\sqloledb.rll', no matching symbolic information found.
AllocTrace(), total number of traces: 1
Loaded 'C:\Program Files\Microsoft Commerce Server 2002\CSDWMsg.dll', no matching symbolic information found.
The program 'C:\Program Files\Microsoft Commerce Server 2002\SDK\Tools\SSCE Migration\Membership\Client\Debug\Client.exe' has exited with code 0 (0x0).


If the above is not an issue, how I can I prevent the code from crashing, when not executing in the debug mode? The error does not relate to any particular line of code...and is formed throughout, ending in, initializing object statement.

Thanks in advance.
 
no matching symbolic information found" means that the specified loaded module (i.e. KERNEL32.DLL) does not contains debug symbols embeded in it (which is perfectly normal, because if it would have debug symbols that would mean you are the proud owner of a Windows version compiled with "DEBUG" [bigglasses]).

"has exited with code 0" means that everything went ok. A code other than 0 means trouble.

As concerning the "First chance exception" in Msaddsr.dll (which is "OLE DB Data Shape Provider"), perhaps you're doing something wrong?

If it works in debug but not in release mode, put some logging in you software in order to identify the code area that has problems and then post that code here. We'll get to the bottom of it...
 
Hi BOOgyeMan,

Sorry for the late reply...was out of office. Thanks for the response.

However, the code is currently getting stuck in a call to some dll function and so I am finding it difficult to trace for now. Let me try anyway.

Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top