Public Sub CheckEvents()
This method forces the event queue to be checked for pending events. Any events will be immediately processed, causing your event handler routine to be called for each one. If this method is called when there are no pending events, it will simply return.
In Visual Basic 6, your event handler function is called within the same thread as the rest of your application and events are processed around the same time that form events (such as Click) are processed. This means that processor-intensive portions of your code could potentially delay the processing of ETH32 events. In this case, if you would like to force any pending ETH32 events to be processed immediately, you may call this method.
Note that it is normally not necessary to ever use this method. Unless a situation like the above applies, incoming events will be processed automatically almost immediately after they occur.
Event Handler Section