PRB: Using ARROW Keys Ignores Page Deactivate Event NODEFAULT (165169)



The information in this article applies to:

  • Microsoft Visual FoxPro for Windows 5.0
  • Microsoft Visual FoxPro for Windows 5.0a
  • Microsoft Visual FoxPro for Windows 6.0

This article was previously published under Q165169

SYMPTOMS

In Visual FoxPro 5.0x, moving between pages in a PageFrame using an ARROW key ignores the NODEFAULT keyword in the Deactivate Event of a page. Moving between pages using a mouse click with the NODEFAULT keyword in the Deactivate Event works as expected.

STATUS

Microsoft is researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Create a Form (TEST.SCX) with a two-page PageFrame.
  2. Type in NODEFAULT in the Deactivate Event of the first page.
  3. Save and run the Form (TEST.SCX).
NOTE: Ensure that the focus is on the first page, then try to move to the second page by using the RIGHT ARROW key. The focus is set to the second page.

WORKAROUND

Here is a workaround for the behavior illustrated in the above example:

  1. Set the Form KEYPREVIEW property to .T.
  2. Put the following code in the KeyPress Event of the Form:
          IF THISFORM.ACTIVECONTROL.BASECLASS="Page" AND ;
             (nKeyCode=4 OR nKeyCode=19) AND ;
             !THISFORM.ACTIVECONTROL.DEACTIVATE()
                NODEFAULT
          ENDIF
    						
  3. Type in the following code in the Deactivate Event of first page:
          NODEFAULT
          RETURN .F.
    						

Modification Type:MajorLast Reviewed:2/4/2000
Keywords:kbprb KB165169