Jump to content

Recommended Posts

Posted

Hi Guys,

I have a basic GUI with password input created like so..

$password = GuiCtrlCreateInput("", 100, 120, 200, 30, $ES_PASSWORD)

My problem is, the amount of characters that can be placed into this box is limited.

As in, once the box is filled up from left to right, it won't accept any more characters.

This is not normally a problem but some people have very long passwords!

Is there any way I can change this so that it takes characters once all the space is filled up?

Posted

You want to ADD the password style to the default style, not set it exclusively:

$password = GuiCtrlCreateInput("", 100, 120, 200, 30, BitOR($GUI_SS_DEFAULT_INPUT, $ES_PASSWORD))

:D

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...