Jump to content

$es_password


Recommended Posts

$password = GUICtrlCreateInput ("", 70, 35, 100, 20, $ES_PASSWORD)

when i run this code i get

C:\temp\client.au3 (10) : ==> Variable used without being declared.:

$password = GUICtrlCreateInput ("", 70, 35, 100, 20, $ES_PASSWORD)

$password = GUICtrlCreateInput ("", 70, 35, 100, 20, ^ ERROR

why is that ?

Link to comment
Share on other sites

$password = GUICtrlCreateInput ("", 70, 35, 100, 20, $ES_PASSWORD)

when i run this code i get

C:\temp\client.au3 (10) : ==> Variable used without being declared.:

$password = GUICtrlCreateInput ("", 70, 35, 100, 20, $ES_PASSWORD)

$password = GUICtrlCreateInput ("", 70, 35, 100, 20, ^ ERROR

why is that ?

#include <GUIConstants.au3>

or $ES_PASSWORD = 0x0020

When the words fail... music speaks.

Link to comment
Share on other sites

hmm thx(A) i dont know why it ist working anymore but it is fixed now:)

you realy know alot abouth gui or not?muttley

I write scripts every day, I spend very much time with my programs and usually things like $ES_PASSWORD, are very simple. :)

When the words fail... music speaks.

Link to comment
Share on other sites

hmm thx(A) i dont know why it ist working anymore but it is fixed now:)

you realy know alot abouth gui or not? :)

Well I write a lot of scripts, at the moment. What do you think of this GUI? It's not finished yet muttley

I write scripts every day, I spend very much time with my programs and usually things like $ES_PASSWORD, are very simple. :(

Same here, although I did ask for $ES_PASSWORD myself the other day :\
Link to comment
Share on other sites

Haha, you could use

#include <EditConstants.au3>
$password = GUICtrlCreateInput ("", 70, 35, 100, 20, BitOR("", $ES_PASSWORD)

-AlmarM-

Minesweeper

A minesweeper game created in autoit, source available.

_Mouse_UDF

An UDF for registering functions to mouse events, made in pure autoit.

2D Hitbox Editor

A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.

Link to comment
Share on other sites

Well I write a lot of scripts, at the moment. What do you think of this GUI? It's not finished yet muttley

Same here, although I did ask for $ES_PASSWORD myself the other day :\

Your GUI is amazing, I like it. I use WinXP :) .

Edited by Andreik

When the words fail... music speaks.

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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