Click here to Skip to main content
15,884,176 members
Everything / PDB

PDB

PDB

Great Reads

by baruchl
How to setup .NET symbol server and enable production debugging without source code
by yash soman
Using PDB Files, Using Remote Debugging Tools

Latest Articles

by yash soman
Using PDB Files, Using Remote Debugging Tools
by baruchl
How to setup .NET symbol server and enable production debugging without source code

All Articles

Sort by Score

PDB 

13 Jan 2012 by baruchl
How to setup .NET symbol server and enable production debugging without source code
7 Sep 2015 by C3D1
Hello,i am using VC6++.I have several *.lib projects in my workspace and some *.exe projects.For the *.exe projects PDB-Files were generated normally (im coming from VC2010 so i am really new to VC6) but when i compile the *.lib projects, no PDB Files are generated.I've checked the...
3 Feb 2016 by Jochen Arndt
PDB files are additional files containing symbols of modules to be used during debugging. They are generated for your sources during the debug build process. But there might be no such files for external modules like system DLLs.The messages you see in the debug output window are just...
16 Oct 2017 by Dave Kreskowiak
Not from here. Code Project does not have any products like that. LeadTools is a commercial product, from LEADTOOLS - The World Leader in Imaging SDKs[^]. I guess you should be asking them, not this site, for the PDB files, though, I seriously doubt you're going to get them.
17 Oct 2017 by LEADTOOLS Support
Adrian, We do not supply PDB files with our libraries. However, there are other ways to try to isolate the problem and our email support service is free even for older versions like LEADTOOLS 15. If the problem is triggered when calling one of our functions, it is sometimes useful to create a...
12 Mar 2021 by Rick York
I don't think you can do that in shared memory for use by two applications. Pointers in one process will be useless to another process. The offsets can be placed in there though but I'm not sure what address you would use as a base. You might...
16 Dec 2013 by Member 10470908
Hi Jerry.Wang: Your are doing a good job, and your .NET CLR Injection solves my problem, thanks guy!
7 Sep 2015 by Santhosh G_
If you use /Z7, the debug info will be embedded into the .obj file, and then embedded into the .lib. https://msdn.microsoft.com/en-us/library/958x11bc.aspx
7 Sep 2015 by Leo Chapiro
Go to Project Settings, Link. Select the Category: "General" and check the "Generate Debug Info" box. After that, you can select the Category "Debug" and change settings about the debug file.Take a look as well at /PDB (Use Program Database) Visual Studio 6.0[^]
3 Feb 2016 by Shijin Chandran
I have written a program in Visual studio 2015 and during debugging, several comments like below came on output window.'C:\Windows\System32\ntdll.dll'. Cannot find or open the PDB file.'C:\Windows\System32\kernel32.dll'. Cannot find or open the PDB...
3 Feb 2016 by chandanadhikari
hi,probably the debugger might not have access to c:\windows directory.Maybe running the IDE as admin might help. Also, for the Microsoft dlls (like msvcr dlls), you might need to connect to the Microsft Symbol server. Read more about it here : Debugging with Symbols...
12 Mar 2021 by Member 4000158
I am generating a C++ static library with approximately 5 million functions. This library is linked in to an executable. I need to be able to call any number of these functions during run-time from an external application that will notify the...
19 May 2021 by dj4400
Hi, I have a native c++ app. that uses a clr/cli wrapper to call a c# dll function. The solution is built in VS.2017, using the platform toolset of vs2010(v100) and includes the native c++ project, the clr/cli wrapper project and the c# dll...
19 May 2021 by Dave Kreskowiak
That's not an exception. It's just a debugger message that says it cannot load the symbols from the PDB file for the wkernelbase assembly. There's nothing to worry about there. If you want to get rid of it, you can enable automatically...
10 Nov 2015 by yash soman
Using PDB Files, Using Remote Debugging Tools
4 Nov 2012 by Jerry.Wang
In this article, .NET CLR Injection: Modify IL Code during Run-time[^]. It uses symchk.exe to download the corresponding PDB file of the current loaded native DLLs (clr.dll / clrjit.dll / mscorjit.dll / mscorwks.dll).I want to get all the PDB symbol files for all releases(include preview)...
16 Oct 2017 by adrian_h
The company I work for has used your library for a while. I need to do some debugging but I need the call stack fully resolved. Where would I get the PDB files for version 15 of your library? They are not in the install package that we have on file. Thanks, Adrian What I have tried: ...