Vinu Posted July 18, 2007 Posted July 18, 2007 Hi, needed help on the password inputfield created using GUICtrlCreateInput ( "", 80,90,220,20,$ES_PASSWORD),if the password typed is longer than the length of the field its getting truncated, this made me to create a very long password field , however if this is a normal text input field the issue is not there, please let me know if there are any workarounds . vinu
dryan Posted July 18, 2007 Posted July 18, 2007 GUICtrlCreateInput ( "", 80,90,220,20,$ES_PASSWORD+$ES_AUTOHSCROLL)
Sokko Posted July 20, 2007 Posted July 20, 2007 Incidentally, the reason you observed this only with password fields is that by setting $ES_PASSWORD as the style, you are overriding the default style for input boxes, which is a combination of styles that includes $ES_AUTOHSCROLL. The help file will tell you what the default styles are for all controls, if you need to find out.
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