How to Force Input to Uppercase in a Combo Box

Last reviewed: March 16, 1996
Article ID: Q141804
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, versions 3.0 and 3.0b

SUMMARY

In Visual FoxPro window 3.0, no Format property is available for a combo box to force user input to the text box region to be in uppercase.

MORE INFORMATION

Use the following sample code to force user input to be in upper case. Place the following code in the Keypress event of the combo box.

    If Islower(Chr(nKeycode))
       Nodefault
       Keyboard Upper(Chr(nKeycode))
    Endif


Additional reference words: 3.00 3.00b VFoxWin all caps
KBCategory: kbui kbhowto kbcode
KBSubcategory: FxotherGeneral


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: March 16, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.