How to Force Input to Uppercase in a Combo BoxLast reviewed: March 16, 1996Article ID: Q141804 |
The information in this article applies to:
SUMMARYIn 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 INFORMATIONUse 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
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |