argv1 0 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 Share this post Link to post Share on other sites
Subz 468 Posted May 18, 2017 Try: $Input1 = GUICtrlCreateInput("", 16, 48, 185, 21, BitOr($ES_NUMBER, $ES_PASSWORD)) Share this post Link to post Share on other sites