Jump to content

i542

Active Members
  • Posts

    1,704
  • Joined

  • Last visited

About i542

  • Birthday 02/02/1996

Profile Information

  • Member Title
    Captain on the Bridge.
  • Location
    MSN Messenger
  • WWW
    http://www.i542.net

Recent Profile Visitors

977 profile views

i542's Achievements

Universalist

Universalist (7/7)

2

Reputation

  1. i542

    ItCopter

  2. Finally! I will install it to PCs in my school - so that I won't need to reinstall Windows every 30 days ._.
  3. WinGetHandle could do what you are asking. $handle = WinGetHandle("Untitled - Notepad", "")
  4. That's odd. It works perfectly with me. It might be a bug in Windows 7. Try adding #RequireAdmin on start of your script.
  5. Notice these: Run("msnmsgr2.exe", "%ProgramFiles(x86)%\Windows Live\Messenger") Run("msnmsgr3.exe", "%ProgramFiles(x86)%\Windows Live\Messenger") Changing these two lines into this might just work: Run(@ProgramFilesDir & "\Windows Live\Messenger\msnmsgr.exe", @ProgramFilesDir & "\Windows Live\Messenger") Run(@ProgramFilesDir & "\Windows Live\Messenger\msnmsgr.exe", @ProgramFilesDir & "\Windows Live\Messenger") EDIT: *shy* wrong dir.
  6. When I try to click on Resize radio button:
  7. It is (currently) not possible, and I doubt it will be possible in future. AutoIt is basic-like language, but you can always use AutoItX to use some AutoIt commands in other programming languages (like Java )
  8. Okay... whatever that meant :s
  9. Try this: #Region;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_outfile=example.exe #AutoIt3Wrapper_Res_Icon_Add=c:\files\example.ico #EndRegion;**** Directives created by AutoIt3Wrapper_GUI **** #Include <GUIConstantsEx.au3> GUICreate("", 150, 150) GUICtrlCreateIcon("c:\files\example.exe", 4, 20, 20) GUISetState() Do Until GUIGetMsg() = $GUI_EVENT_CLOSE First icon is addressed as zero, so if you have 5 icons in your file, 5th is actually 4th. As in arrays.
  10. Button is disabled while textbox is blank #include <GuiConstantsEx.au3> $InputWindowHandle = GUICreate("Please provide Input", 225, 125) GUISetState(@SW_SHOW) GUICtrlCreateLabel("Please Provide the name of Publisher!", 25, 20) $PubInput = GUICtrlCreateInput("", 75, 50, 80) $PubSubmitButton = GUICtrlCreateButton("Submit", 85, 80, 60) GuiCtrlSetState($PubSubmitButton, $GUI_Disable) Local $msg4 GUISetState() Local $Enabled = False While 1 $msg4 = GUIGetMsg() If GuiCtrlRead($PubInput) <> "" And $Enabled = False Then GuiCtrlSetState($PubSubmitButton, $GUI_ENABLE) $Enabled = True EndIf Select Case $msg4 = $PubSubmitButton $PubName = GUICtrlRead ($PubInput) GUIDelete() Run ('osql -S ' & $PubName & ' -E -i "C:\T-MATRIX\Scripts\DropPublisher.sql"') IF @error <> 0 Then MsgBox(1, "Error", "Not able to run script - 'Drop Publisher.sql'") ;Return $RetValue = False EndIf sleep (30000) ExitLoop Case $msg4 = $GUI_EVENT_CLOSE ExitLoop EndSelect WEnd edit: better way
  11. What are you trying to do? On which subject do you need help on? Please provide enough information so others can help you.
  12. Please do not post if you do not have clue on what is that. Rather Google.http://www.hwaci.com/sw/tobe/zvfs.html
×
×
  • Create New...