This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;-- Idea for this example: just me. | |
| ;-- Post: http://www.autohotkey.com/board/topic/88206-inputbox-data-validation-5-characters-or-less/#entry559627 | |
| #NoEnv | |
| #SingleInstance Force | |
| ListLines Off | |
| ;-- Constants | |
| ES_UPPERCASE :=0x8 | |
| ES_LOWERCASE :=0x10 | |
| ES_NUMBER :=0x2000 |