Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
413 views

Why is FormatMessage() failing to find a message for WinINet errors?

I'm running this to test FormatMessage: LPVOID lpMsgBuf; errCode=12163; FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM , 0, errCode, 0, (LPTSTR) ...
2
votes
1answer
520 views

Safe/flexible facade for Windows FormatMessage

I need to use FormatMessage() for a project, but I don't like its scary interface. Does anyone know of a facade that tidies it up while still allowing for the replacement parameters? I just read the ...
1
vote
2answers
3k views

How to read the Windows Event Log without an EventMessageFile?

I have code that reads the Windows Event Log. It uses OpenEventLog, ReadEventLog and gets the event source and event ID. Then it looks up the source under the ...
0
votes
0answers
8 views

Constructing the Message for an event log entry - what are parameter message files?

I'm writing a form of event log viewer and I'm trying to work out how to construct the Message that should be displayed. Looking at the documentation on Message Files I can see that the process to ...
0
votes
1answer
57 views

FormatMessage gets Error 317 while trying to read EventLog

I had nearly similar problem with this. FormatMessage Fails with error code 317 The difference is it is said as an answer that this is caused by "FORMAT_MESSAGE_FROM_SYSTEM" but when I remove it it ...
0
votes
0answers
82 views

Do we need to use wsock32.dll handle obtained from LoadLibraryEx() to FormatMessage() for getting winsock error messages from error numbers?

Could you please give me some thoughts on the best way to get winsock error messages from error numbers? The wsock32.dll is already loaded to the process as an executable DLL. I am able to see the ...
0
votes
1answer
363 views

Event IDs don't match what is displayed in Event Viewer

In the System event log is an event with the following details: Source: Kernel-General Event ID: 1 Details: The system time has changed to ‎2010‎-‎07‎-‎17T02:58:20.285000000Z from ...