以下是错误字符串:
Automation.exe':已加载'D:\Automation\debug\Automation.exe',已加载符号。“Automation.exe”:已加载“C:\WINDOWS\system32\ntdll.dll”,已加载符号(已剥离源信息)。“Automation.exe”:已加载“C:\WINDOWS\system32\kernel32.dll”,已加载符号(已剥离源信息)。“Automation.exe”:已加载“D:\Automation\ debug \libxml2.dll”,未使用调试信息生成二进制文件。“Automation.exe”:已加载“C:\WINDOWS\system32\wsock32.dll”,已加载符号(已剥离源信息)。“Automation.exe”:已加载“C:\WINDOWS\system32\ws2_32.dll”,已加载符号(已剥离源信息)。“Automation.exe”:已加载“C:\WINDOWS\system32\Advapi32.dll”,已加载符号(已剥离源信息)。“Automation.exe”:已加载“C:\WINDOWS\system32\rpcrt4.dll”,已加载符号(已剥离源信息)。“Automation.exe”:已加载“C:\WINDOWS\system32\secur32.dll”,已加载符号(已剥离源信息)。“Automation.exe”:已加载“C:\WINDOWS\system32\msvcrt.dll”,已加载符号(已剥离源信息)。“Automation.exe”:已加载“C:\WINDOWS\system32\ws2help.dll”,已加载符号(已剥离源信息)。“Automation.exe”:已加载“D:\Automation\ debug \iconv.dll”,未使用调试信息生成二进制文件。“Automation.exe”:已加载“D:\Automation\ debug \zlib1.dll”,无法找到或打开PDB文件“Automation.exe”:已加载“D:\Automation\debug\hasp_windows_37517.dll”,未使用调试信息生成二进制文件。“Automation.exe”:未使用调试信息生成加载的'D:\Automation\debug\sntl_licgen_windows.dll',二进制文件。“Automation.exe”:已加载“C:\WINDOWS\system32\user32.dll”,已加载符号(已剥离源信息)。“Automation.exe”:已加载“C:\WINDOWS\system32\gdi32.dll”,已加载符号(已剥离源信息)。“Automation.exe”:已加载“C:\WINDOWS\system32\msvcr100.dll”,已加载符号(已剥离源信息)。“Automation.exe”:已加载“C:\WINDOWS\system32\imm32.dll”,已加载符号(已剥离源信息)。Automation.exe: 0xC0000005中0x007ff9ba处的第一次机会异常:访问冲突读取位置0x00000000。Automation.exe: 0xC0000005中0x007ff82f处的第一次机会异常:访问冲突读取位置0x00000000。程序“400 Automation.exe: Native”已退出,代码为%1 (0x1)。
早些时候,使用相同的配置,我成功地调试了应用程序。
发布于 2012-11-20 15:46:50
日志的最后几行表明您的应用程序在启动时崩溃。
Automation.exe:0xC0000005中0x007ff9ba处的
第一次机会异常:读取位置0x00000000的访问冲突。Automation.exe: 0xC0000005中0x007ff82f处的第一次机会异常:读取位置0x00000000的访问冲突。程序“400 Automation.exe: Native”已退出,代码为%1 (0x1)。
在main上设置断点,然后单步执行您的代码,查看它崩溃的位置。在VS下,当异常被抛出时,你应该实际看到一个对话框。在那里,您可以单击Debug停止执行并查看堆栈跟踪。
https://stackoverflow.com/questions/13468288
复制相似问题