BUG: SPACE BAR+ARROW KEY Causes GPF When Unloading FormLast reviewed: November 29, 1996Article ID: Q160161 |
The information in this article applies to:
SYMPTOMSWith a form that contains at least two controls that are capable of receiving focus, if the SPACE BAR+ARROW KEY combination is pressed while the focus is on the control whose click event contains the code "Unload Me," a General Protection Fault (GPF) will occur
WORKAROUNDInstead of unloading the form immediately in the click event of a control, place a Timer control on the form and use it to defer this action for one millisecond using the following code:
Private Sub Command1_Click() '''Unload Me Timer1.Interval = 1 End Sub Private Sub Timer1_Timer() Unload Me End Sub STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. Microsoft is researching this bug and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATION
Steps to Reproduce Problem
|
KBCategory: kbprg kbbuglist
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |