AustrianOak Posted June 11, 2008 Posted June 11, 2008 i have an updown control and i dont want it to accept anything but numerals. i tested this and i could type in characters besides just numerals. whats the fix for this?
Valuater Posted June 11, 2008 Posted June 11, 2008 #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <EditConstants.au3> $title = "My GUI UpDown" GUICreate($title, -1, -1, -1, -1, $WS_SIZEBOX) $input = GUICtrlCreateInput("2", 10, 10, 50, 20, $ES_NUMBER) $updown = GUICtrlCreateUpdown($input) GUISetState() ; Run the GUI until the dialog is closed While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop WEnd MsgBox(0, "Updown", GUICtrlRead($input)) 8)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now