Doc. # 1-0002141 | |||
---|---|---|---|
Date Updated | 07-27-2005 | Date Created | 07-27-2000 |
Document Type | Knowledge Base | Related OS | |
Related Product | 32-bit DLL Drivers/ PCL-818HG |
What's the error message "check event error!" means of 32-bit DLL drivers (use PCL-818HG)? | |||
---|---|---|---|
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 to change the time interval which is suitable for user's application, such as 50000 milliseconds.
while(TickValue > GetTickCount())
{
// Check message
ptCheckEvent.EventType = &usEventType;
ptCheckEvent.Milliseconds = 5000;
|