G
das MSDN (Oct 2001) sagt unter dem Index "error codes (Win32)"
193 | %1 is not a valid Win32 application. | ERROR_BAD_EXE_FORMAT
Vielleicht gibt es keinen Fehlereintrag im System. Wäre bei Bill nicht das erste mal
Ansonsten probier mal folgendes:
LPVOID lpMsgBuf;
FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
GetLastError(),
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
(LPTSTR) &lpMsgBuf,
0,
NULL
);
// Display the string.
::MessageBox( theApp.m_hMainFrame , (LPCTSTR)lpMsgBuf, "NT Control - System Error", MB_OK | MB_ICONINFORMATION );
// Free the buffer.
LocalFree( lpMsgBuf );
Aber mehr, als "not a valid Win32 application" wird trotzdem nicht bei rauskommen.
Gruss, Gio