FIX: Hot Keys Do Not Work If TabStop Is Set to False

Last reviewed: October 29, 1997
Article ID: Q135908
3.00 3.00b WINDOWS kbtool kbbuglist kbfixlist

The information in this article applies to:

  • Microsoft Visual FoxPro for Windows, versions 3.0, 3.0b

SYMPTOMS

Assigning access keys (hot keys) to a command button in Visual FoxPro is done by placing the "\<" characters in front of the character that is in the name of the caption name property of the command button. When the form is run, you can press the ALT key and the access key character to activate the command button. This works as long as the TabStop property of the command button is set to the default of True. If the TabStop property is set to False, pressing ALT+access key doesn't activate the command button.

WORKAROUND

If TabStop property must be set to false, place the following command in the form's Init event procedure to make the access key work:

   ON KEY LABEL ALT + U _SCREEN.ACTIVEFORM.COMMAND2.CLICK

STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem has been fixed in Visual FoxPro 5.0 for Windows.

MORE INFORMATION

Steps to Reproduce Problem

  1. Create a new form in Visual FoxPro.

  2. Add a text box and two command buttons to the form.

  3. In the Caption property of the first command button, type "\<Button1" (without the quotation marks). In the command button's Click event procedure, add this code:

    WAIT WINDOW "Button1"

  4. In the Caption property of the second command button, type "B\<utton" (without the quotation marks), and change the TabStop property to False. In the command button's Click event procedure, add this code:

    WAIT WINDOW "Button2"

  5. Run the form. Press the TAB key several times, and note that the mouse pointer is never positioned on the second command button. Press ALT+B and a wait window box appears. Pressing ALT+U will not display a wait window as it should. If either command button is clicked, the wait window for each is displayed.

  6. Modify the form to change the TabStop property to True on the second command button. Now you can press ALT+U to display the wait window, but it also allows tabbing to the second command button.


KBCategory: kbtool kbbuglist kbfixlist
KBSubcategory: FxtoolFormdes VFoxWin buglist3.00 buglist3.00b fixlist5.00
Additional reference words: 3.00 3.00b
Keywords : buglist3.00 buglist3.00b fixlist5.00 FxtoolFormdes vfoxwin kbbuglist kbfixlist kbtool
Version : 3.00 3.00b
Platform : WINDOWS
Solution Type : kbfix


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: October 29, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.