argv1 Posted May 18, 2017 Posted May 18, 2017 (edited) HI, I current got the following Input field: $Input1 = GUICtrlCreateInput("", 16, 48, 185, 21, $ES_NUMBER) everything works fine, but I would like to use $ES_PASSWORD as well, but if I change it to: $Input1 = GUICtrlCreateInput("", 16, 48, 185, 21, $ES_NUMBER, $ES_PASSWORD) I still can only enter digits but I can see the input. I also tried: $Input1 = GUICtrlCreateInput("", 16, 48, 185, 21, $ES_NUMBER) ;== nur Zahlen erlaubt GUICtrlSetStyle(-1, $ES_PASSWORD) but nothing changed. Is it possible to use both at the sam time and also limit the input length? Edited May 18, 2017 by argv1
Subz Posted May 18, 2017 Posted May 18, 2017 Try: $Input1 = GUICtrlCreateInput("", 16, 48, 185, 21, BitOr($ES_NUMBER, $ES_PASSWORD))
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