Quote:
Originally posted by "misterx"
Dopo aver dato fondo al Win32SDK, ho assemblato questo codice ma: funziona solo con windows NT; avessi letto prima le "Quick info"
mi torna errore 120
|
Che dice se metti questo codice nella gestione dell'errore ?
Codice:
LPVOID lpMsgBuf;
FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
GetLastError(),
0, // Default language
(LPTSTR) &lpMsgBuf,
0,
NULL
);
// Process any inserts in lpMsgBuf.
// ...
// Display the string.
MessageBox( NULL, (LPCTSTR)lpMsgBuf, "Error", MB_OK | MB_ICONINFORMATION );
// Free the buffer.
LocalFree( lpMsgBuf );