How to Force Input to Uppercase in a Combo Box (141804)



The information in this article applies to:

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

This article was previously published under Q141804

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
				

Modification Type:MajorLast Reviewed:9/30/2003
Keywords:kbcode KB141804