yucatan Posted July 11, 2008 Posted July 11, 2008 $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 ?
Andreik Posted July 11, 2008 Posted July 11, 2008 $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, ^ ERRORwhy is that ?#include <GUIConstants.au3>or $ES_PASSWORD = 0x0020
James Posted July 11, 2008 Posted July 11, 2008 $ES_PASSWORD = 0x0020 Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
yucatan Posted July 11, 2008 Author Posted July 11, 2008 (edited) $ES_PASSWORD = 0x0020hmm thx(A) i dont know why it ist working anymore but it is fixed now:)you realy know alot abouth gui or not?muttley Edited July 11, 2008 by yucatan
Andreik Posted July 11, 2008 Posted July 11, 2008 hmm thx(A) i dont know why it ist working anymore but it is fixed now:)you realy know alot abouth gui or not?muttleyI write scripts every day, I spend very much time with my programs and usually things like $ES_PASSWORD, are very simple.
James Posted July 11, 2008 Posted July 11, 2008 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 muttleyI 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 :\ Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
AlmarM Posted July 11, 2008 Posted July 11, 2008 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.
Andreik Posted July 11, 2008 Posted July 11, 2008 (edited) Well I write a lot of scripts, at the moment. What do you think of this GUI? It's not finished yet muttleySame here, although I did ask for $ES_PASSWORD myself the other day :\Your GUI is amazing, I like it. I use WinXP . Edited July 11, 2008 by Andreik
James Posted July 11, 2008 Posted July 11, 2008 You GUI is amazing, I like it. I use WinXP muttley .Thanks Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
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