我写程序的时候,在debug模式下编译得时候没有问题,但是编译后得东西打不开。后来我又进行调试,发现好多这样得信息,这是怎么回事呢?消息如下:
Loaded 'C:\WINNT\system32\ntdll.dll', no matching symbolic information found.
Loaded 'C:\WINNT\system32\avicap32.dll', no matching symbolic information found.
Loaded 'C:\WINNT\system32\USER32.DLL', no matching symbolic information found.
Loaded 'C:\WINNT\system32\KERNEL32.DLL', no matching symbolic information found.
Loaded 'C:\WINNT\system32\GDI32.DLL', no matching symbolic information found.
Loaded 'C:\WINNT\system32\winmm.dll', no matching symbolic information found.
Loaded 'C:\WINNT\system32\ADVAPI32.DLL', no matching symbolic information found.
Loaded 'C:\WINNT\system32\rpcrt4.dll', no matching symbolic information found.
Loaded 'C:\WINNT\system32\version.dll', no matching symbolic information found.
Loaded 'C:\WINNT\system32\lz32.dll', no matching symbolic information found.
Loaded 'C:\WINNT\system32\msvfw32.dll', no matching symbolic information found.
Loaded 'C:\WINNT\system32\SHELL32.DLL', no matching symbolic information found.
Loaded 'C:\WINNT\system32\shlwapi.dll', no matching symbolic information found.
Loaded 'C:\WINNT\system32\comctl32.dll', no matching symbolic information found.
Loaded 'C:\WINNT\system32\COMDLG32.DLL', no matching symbolic information found.
Loaded 'C:\WINNT\system32\msvcrt.dll', no matching symbolic information found.
Loaded 'C:\WINNT\system32\WINSPOOL.DRV', no matching symbolic information found.
Loaded 'C:\WINNT\system32\mpr.dll', no matching symbolic information found.
Loaded 'C:\WINNT\system32\oledlg.dll', no matching symbolic information found.
Loaded 'C:\WINNT\system32\OLE32.DLL', no matching symbolic information found.
Loaded 'C:\WINNT\system32\OLEPRO32.DLL', no matching symbolic information found.
Loaded 'C:\WINNT\system32\OLEAUT32.DLL', no matching symbolic information found.
Loaded 'C:\WINNT\system32\imm32.dll', no matching symbolic information found.
Loaded 'C:\WINNT\system32\SODAHK.DLL', no matching symbolic information found.
Loaded 'C:\WINNT\system32\mmdrv.dll', no matching symbolic information found.
First-chance exception in MyCapture.exe: 0xC0000005: Access Violation.
First-chance exception in MyCapture.exe: 0xC0000005: Access Violation.
我连接得库是vfw32.lib和user32.lib

解决方案 »

  1.   

    这个没关系,因为你的程序用不着这些dll
    只要不是error即可
      

  2.   

    First-chance exception in MyCapture.exe: 0xC0000005: Access Violation.
    First-chance exception in MyCapture.exe: 0xC0000005: Access Violation.这两句好像是问题的关键,建议从WinMain那里开始调试,按F5来执行
      

  3.   

    “no matching symbolic information found.”这类信息可以不理。后面的错误应该是指针访问错误造成的,检查一下是否有指针/数组越界。
      

  4.   

    First-chance exception in MyCapture.exe: 0xC0000005: Access Violation.
    First-chance exception in MyCapture.exe: 0xC0000005: Access Violation.
    ==========================================================================
    跟踪一下,看在哪里出错。