Doc. # 1-0002144 | |||
---|---|---|---|
Date Updated | 07-27-2005 | Date Created | 07-27-2000 |
Document Type | Knowledge Base | Related OS | |
Related Product |
What's means of 32-bit DLL drivers of message "check event error!"? | |||
---|---|---|---|
Solution:
It is results from the setting of checking event time interval. As the program code below, the example set the check event time to be 5000 milliseconds. It is recommended that you can change it to the time interval which is suitable for your application, such as 50000 milliseconds
while(TickValue > GetTickCount())
{
// Check message
ptCheckEvent.EventType = &usEventType;
ptCheckEvent.Milliseconds = 5000;
|