HowitZer
unread,May 19, 2011, 1:19:55 PM5/19/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Crashrpt
Hello,
I've built crashrpt in x64 and when I run the sample crashcon it
produces a window saying "Error launching CrashSender.exe".
I've found this in the source code
if(result!=0)
{
ATLASSERT(result==0);
crSetErrorMsg(_T("Error launching CrashSender.exe"));
// Failed to launch crash sender process.
// Try notify user about crash using message box.
CString szCaption;
szCaption.Format(_T("%s has stopped working"),
Utility::getAppName());
CString szMessage;
szMessage.Format(_T("Error launching CrashSender.exe"));
MessageBox(NULL, szMessage, szCaption, MB_OK|MB_ICONERROR);
return 3;
}
Crashrpt works in x86 mode. I've built the code in visual studio 2008
on windows 7. How do I go about making it work in x64 with this error?
This is supposed to work according to the documentation.
Thanks,
Adam