Jump to content

Recommended Posts

Posted

I create a Edit with the follow line:

EditPassWordHd=GUICtrlCreateEdit("",-1,-1,100,40,BitOR($GUI_SS_DEFAULT_EDIT,$ES_PASSWORD))

but so strange,when I input the password,it couldn't display the password as *********

why?

Posted

I create a Edit with the follow line:

EditPassWordHd=GUICtrlCreateEdit("",-1,-1,100,40,BitOR($GUI_SS_DEFAULT_EDIT,$ES_PASSWORD))

but so strange,when I input the password,it couldn't display the password as *********

why?

try

EditPassWordHd = GUICtrlCreateInput("",-1,-1,100,40,BitOR($GUI_SS_DEFAULT_EDIT,$ES_PASSWORD))

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

Posted

solved,thank you so much!

try

EditPassWordHd = GUICtrlCreateInput("",-1,-1,100,40,BitOR($GUI_SS_DEFAULT_EDIT,$ES_PASSWORD))

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
×
×
  • Create New...