Ask for Help!!
-
Hi,I am asking for help! I built a project by using VC++,and wanted to debug it. But after I started to debug,it displayed something like assembley code,and said cannot set a breakpoint at the cursor location. And the error msgs about debug are : Loaded 'ntdll.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\kernel32.dll', no matching symbolic information found. Loaded 'C:\Program Files\Tcl\bin\tcl83.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\user32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\gdi32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\advapi32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\rpcrt4.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\msvcrt.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\opengl32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\glu32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\ddraw.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\dciman32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\imm32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\lpk.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\usp10.dll', no matching symbolic information found. The program 'D:\Thesis\OpenSees\Win32\bin\openSees.exe' has exited with code 0 (0x0). I don't understand what's going on. Anybody knows that?
-
Hi,I am asking for help! I built a project by using VC++,and wanted to debug it. But after I started to debug,it displayed something like assembley code,and said cannot set a breakpoint at the cursor location. And the error msgs about debug are : Loaded 'ntdll.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\kernel32.dll', no matching symbolic information found. Loaded 'C:\Program Files\Tcl\bin\tcl83.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\user32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\gdi32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\advapi32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\rpcrt4.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\msvcrt.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\opengl32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\glu32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\ddraw.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\dciman32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\imm32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\lpk.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\usp10.dll', no matching symbolic information found. The program 'D:\Thesis\OpenSees\Win32\bin\openSees.exe' has exited with code 0 (0x0). I don't understand what's going on. Anybody knows that?
1. Try to clean the project and rebuild all 2. May be u have used such controls in your application which don't let u start your application
-
Hi,I am asking for help! I built a project by using VC++,and wanted to debug it. But after I started to debug,it displayed something like assembley code,and said cannot set a breakpoint at the cursor location. And the error msgs about debug are : Loaded 'ntdll.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\kernel32.dll', no matching symbolic information found. Loaded 'C:\Program Files\Tcl\bin\tcl83.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\user32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\gdi32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\advapi32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\rpcrt4.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\msvcrt.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\opengl32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\glu32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\ddraw.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\dciman32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\imm32.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\lpk.dll', no matching symbolic information found. Loaded 'C:\WINDOWS\system32\usp10.dll', no matching symbolic information found. The program 'D:\Thesis\OpenSees\Win32\bin\openSees.exe' has exited with code 0 (0x0). I don't understand what's going on. Anybody knows that?
You probably built a Release build without debugging information. Select 'Win32 Debug' from the Build toolbar, or select 'projectname - Win32 Debug' in the Build > Set Active Configuration dialog. Then try again. (Instructions for VC 6.0). If you want to debug the release build, it can be helpful to create debugging information. You can do this by selecting 'Program Database' under Debug Info on the C/C++ tab of the Project > Settings dialog, and ticking 'Generate debug info' on the Link tab. Ticking this box disables a release-mode optimization, which you can turn back on by adding /OPT:REF to the Link Options box. The 'error messages' are simply the debugger telling you which DLLs were loaded. 'No matching symbolic information' indicates that the debugger couldn't find debugging symbols for these DLLs: this is not a problem, unless you find yourself stopped in the middle of the DLL. If you want to, you can download debugging symbols from Windows Hardware and Driver Central[^]. However, these don't include debugging symbols for security patches; these used to be contained in the patch package but don't appear to be any more. If you need to, you can get Visual Studio .NET to download symbol files from a Microsoft server on demand. See HOW TO: Use a Symbol Server with the Visual Studio .NET Debugger[^] for more details on this.