• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

VB and Clearing the Keyboard Buffer?

fvlmasl2

Member
Hello....

How can i clear the keyboard buffer from within an event. What is happening know is this...if a user presses the enter key multiple times the control that he hit the enter key is gone, but now the form or control that has the focus is processing the buffered enter keys.


Thanks
 
Windows has an API that allows you to Peek at future event messages.
You can look remove all of those messages from the event queue.
 
Back
Top