tom13 Posted May 2, 2007 Posted May 2, 2007 Hi, I know how to change typed characters with InputBox, but can't find it for GUICtrlCreateInput, anyone does knows this? GUICtrlCreateInput($password, 430, 175 + $top0, 200, 25) It should show **** for every typed character Thanks in advance
Zedna Posted May 2, 2007 Posted May 2, 2007 Use style $ES_PASSWORD GUICtrlCreateInput($password, 430, 175 + $top0, 200, 25, $ES_PASSWORD) Resources UDF ResourcesEx UDF AutoIt Forum Search
KenMP Posted May 2, 2007 Posted May 2, 2007 Hi, I know how to change typed characters with InputBox, but can't find it for GUICtrlCreateInput, anyone does knows this? GUICtrlCreateInput($password, 430, 175 + $top0, 200, 25) It should show **** for every typed character Thanks in advance Hi Tom you need to do the following #include <GuiConstants.au3> $txtPassword = GUICtrlCreateInput($password, 430, 175 + $top0, 200, 25, $ES_PASSWORD) Hope this Helps Ken
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