Jump to content

Textbox?


Recommended Posts

do what ?

creat ?

delete ?

click ?

[quote]Don't expect for a perfect life ... Expect a least troubles ones[/quote]Contact me : ass@kiss.toWhat I Have Done :Favorites Manager Mangage your favorite's folder, that's coolPC Waker For those who want to save stickersWebScipts Supporter For those who've just started with Web and WebScriptsTemporary Looker Simple but powerful to manage your Temporary folder, you know what you downloaded[UDF] _NumberFormat() Better performance on number display[UDF] _DirGet() What a folder contain [how many (hidden,normal,...) files], with one line of code[UDF] _IsPressEs() Just like _IsPress() but for a group of keys

Link to comment
Share on other sites

you want to creat ones or it's a exist ones and you just want to modify it with script ?

[quote]Don't expect for a perfect life ... Expect a least troubles ones[/quote]Contact me : ass@kiss.toWhat I Have Done :Favorites Manager Mangage your favorite's folder, that's coolPC Waker For those who want to save stickersWebScipts Supporter For those who've just started with Web and WebScriptsTemporary Looker Simple but powerful to manage your Temporary folder, you know what you downloaded[UDF] _NumberFormat() Better performance on number display[UDF] _DirGet() What a folder contain [how many (hidden,normal,...) files], with one line of code[UDF] _IsPressEs() Just like _IsPress() but for a group of keys

Link to comment
Share on other sites

$a=GUICtrlCreateInput(...... ,$ES_READONLY)

[quote]Don't expect for a perfect life ... Expect a least troubles ones[/quote]Contact me : ass@kiss.toWhat I Have Done :Favorites Manager Mangage your favorite's folder, that's coolPC Waker For those who want to save stickersWebScipts Supporter For those who've just started with Web and WebScriptsTemporary Looker Simple but powerful to manage your Temporary folder, you know what you downloaded[UDF] _NumberFormat() Better performance on number display[UDF] _DirGet() What a folder contain [how many (hidden,normal,...) files], with one line of code[UDF] _IsPressEs() Just like _IsPress() but for a group of keys

Link to comment
Share on other sites

When i try to use this code

#include <GUIConstants.au3>
GUICreate("bah", 108, 233, 193, 125)
GUISetBkColor(0xFFFF00)
GUICtrlCreateInput("", 8, 8, 89, 21)
sleep(1000)

Nothing happends. Whats the problem?

Edited by bf2forlife
Link to comment
Share on other sites

your code is finished after sleep(1000) and there's nothing else for your script to do. In order to keep it running, you must add an infinite loop like: While, Do, For, etc... search for those loops in help files, or start a new script in scite, go to TOOLS > KODA, and then TOOLS > GENERATE FORM CODE and click INSERT INTO SCITE. Now you can see example of a window running until you click "X" on it.

edit: you must save newly created script first, in order to be able to hit TOOLS > KODA.

Edited by sandin
Link to comment
Share on other sites

When i try to use this code

#include <GUIConstants.au3>
GUICreate("bah", 108, 233, 193, 125)
GUISetBkColor(0xFFFF00)
GUICtrlCreateInput("", 8, 8, 89, 21)
sleep(1000)

Nothing happends. Whats the problem?

Add GUISetState(@SW_SHOW) before the sleep. Otherwise something happened, you just couldn't see it.
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...