Jump to content

monochrome90

Active Members
  • Posts

    26
  • Joined

  • Last visited

Everything posted by monochrome90

  1. 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...
  2. Was there a mistake? I cant lounch my GUI, this error is poping up... GUISetState(@SW_DISABLE, $hGui) GUISetState(@SW_DISABLE, ^ ERROR
  3. 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?"
  4. 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?
  5. 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
  6. thanx, it works graet!
  7. 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!
  8. could you tell me more about those silent switches? what is the meaning for all of that?
  9. That was one ass kicking script!!! :D Thanx dude!
  10. 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!
  11. thanks so much!
  12. didn't understand anything of that UDF...
  13. yes! in that case my script would be Run("Setup.exe") WinWaitActive ("title", "") Send ("{DOWN}") but title still is wariable...
  14. 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)....
  15. One more question! 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)....
  16. Second variant was very helpful! Thank ya very much!
  17. I am trying to automate a Latvian program. Im runing setup.exe and then appears a combo box where I can chose between two languages - Latvian and English. What I have to do to make script choose the Latvian Language?
  18. i am sorry if i was rude... i didnt want to, i just wanted to point that there cant be other path... i am sorry if i was rude, i realy didnt want to, and i still need help...
  19. EDIT: What 2 files are you looking for? There may be other places to look.
  20. 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...
  21. 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")
  22. 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...
×
×
  • Create New...