
monochrome90
Active Members-
Posts
26 -
Joined
-
Last visited
Everything posted by monochrome90
-
some help needed with my gui...
monochrome90 replied to monochrome90's topic in AutoIt General Help and Support
ASIM, thnx for helping, but you didn't understand what i was asking. what i was asking for, is it possible to disabble everything, but my gui keep worling? like everything would go gray and unusable till my gui finish working? After adding your suggested commands my gui gets invisible... -
some help needed with my gui...
monochrome90 replied to monochrome90's topic in AutoIt General Help and Support
Was there a mistake? I cant lounch my GUI, this error is poping up... GUISetState(@SW_DISABLE, $hGui) GUISetState(@SW_DISABLE, ^ ERROR -
some help needed with my gui...
monochrome90 replied to monochrome90's topic in AutoIt General Help and Support
thanx, it works great, but what about second question? - "And is it possible to dissable everything but my gui? Can i Dissable everything but may gui and pc mouse?" -
how to create gui that have only close button, but no minimize and maximize? And is it possible to dissable everything but my gui? Can i Dissable everything but may gui and pc mouse?
-
Send text in input box
monochrome90 replied to monochrome90's topic in AutoIt General Help and Support
Thank you all! -
Send text in input box
monochrome90 replied to monochrome90's topic in AutoIt General Help and Support
plz help me out with this. When i write 123456789 in the input box, my gui closes, when i don't write anything at all into the input box, it shows msgbox. What should I do to make msgbox appear when I wrote a wrong number combination in the input box? #include <GuiConstants.au3> GuiCreate("sample", 96, 66) $text = "123456789" $input = GUICtrlCreateInput("",3,3, 90, 30, $ES_NUMBER) $Button_ok = GUICtrlCreateButton ("ok",-1,33,30,30, $BS_DEFPUSHBUTTON ) GUISetState () While 1 $msg = GUIGetMsg() switch $msg Case $Button_ok If $text = GUICtrlRead($input)Then ExitLoop ElseIf not $text = GUICtrlRead($input) Then Msgbox(0, "", "false") EndIf Case $GUI_EVENT_CLOSE ExitLoop EndSwitch Wend -
Send text in input box
monochrome90 replied to monochrome90's topic in AutoIt General Help and Support
thanx, it works graet! -
I have crated ten buttons in my GUI - 1;2;3;4;5;6;7;8;9;0 and an input box. I want to make button one send "1" in the input box, button two send "2" in the input box etc. how can I do that? Tanq!
-
auto install for nero7 but got an issue
monochrome90 replied to wootn0w's topic in AutoIt General Help and Support
could you tell me more about those silent switches? what is the meaning for all of that? -
That was one ass kicking script!!! :D Thanx dude!
-
i have created a mesage box which contains YES or NO. How could i make the script run another msgbox if presed yes, or another if presed no? Could you give me an example? Thanx!
-
thanks so much!
-
didn't understand anything of that UDF...
-
yes! in that case my script would be Run("Setup.exe") WinWaitActive ("title", "") Send ("{DOWN}") but title still is wariable...
-
My current script is Run("Setup.exe") If WinWaitActive ("title") Then Send ("{DOWN}") But what should i do if title is variable (depending on regional language)? there could be title1 and title 2 (for example)....
-
i already said than i am a new in script writing, so please be patient! RegDelete ("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\12.0\Registration\{91120000-002F-0000-0000-0000000FF1CE}")oÝ÷ Ú)í+%w¢ç¶âض«z+-Ââë"Øb²· ËkÊ'íêÞȧyçm¡×¥z×éºØ¢{g£hÂÚ¢ØZ¶'âÂ)evajؽéð¢é]m綬)Þjëh×6RunWait("RegEdit /s nonemt.reg") with first line i delete all path instead of two files from that path. wih second line i create that path without those files...
-
This is my code! RegDelete ("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\12.0\Registration\{91120000-002F-0000-0000-0000000FF1CE}") ShellExecute ("nonemt.reg") WinWaitActive ("Registry Editor", "Are you sure you want to add the information") Send ("!y") WinWaitActive ("Registry Editor", "Information in") Send ("{ENTER}") Run ("Proof.exe")
-
But what i hawe to do to hide all the windows that script is opening? And i wasn't talking about the tray icon only. when i do a mouse click on the desktop, or anywhere else, script pauses! I want to do other actions while script is running (like open my computer for example) and script doesn't pause...