Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/03/2011 in all areas

  1. Replacement Tidy.exe has the following important differences: no connection with "AutoIt3Wrapper", which, with the parameter "#AutoIt3Wrapper_Run_Tidy=y" under each start and compile, run Tidy.exe backs up in the script folderpossible to process only the selected area code. It is advisable that has been allocated logically complete piece of code (function, operator, string)added interface settingsall processing settings are available from the command lineHot keys: Ctrl+T - start (at full replacement Tidy.exe) Example of connection to SciTE (file "au3.properties"): command.9.*.au3="$(autoit3dir)\autoit3.exe" "$(SciteDefaultHome)\TidySource\TidySource.au3" "$(FilePath)" command.name.9.*.au3=Tidy AutoIt Source command.save.before.9.*.au3=1 command.shortcut.9.*.au3=Ctrl+T Command line options: TidySource_v1.2.2.zip
    1 point
  2. @monoscout999: dm83737 startet this thread in 2009! I saw it after posting and editing didn't work! And XORGate posted after about two and a half years later. And he definitly wants to reposition an own MsgBox. Greetings
    1 point
  3. @bogQ MultiByteToWideChar is no longer needed. #include <GUIConstantsEX.au3> #include <EditConstants.au3> #include <WinAPI.au3> $hGui = GUICreate("", 500, 300) GUICtrlCreateLabel("Info", 10, 5) Local $aInput[6][2] = [[0, "Name"],[0, "Address"],[0, "Home Phone"],[0, "Mobile Phone"],[0, "Date of birth"],[0, "Town"]] For $i = 0 To UBound($aInput) -1 $aInput[$i][0] = GUICtrlCreateInput("", 10, (20*($i+1)), 140, 20) GUICtrlSendMsg(-1, $EM_SETCUEBANNER, True, $aInput[$i][1]) Next GUISetState() While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then Exit WEnd ;Does not work for edit controls with $ES_MULTILINE style. ;In XP, the banner disappears when the edit has focus (cursor in edit) ;In Vista/7 the banner can optionally still appear when the edit has focus (cursor in edit) ;(third parameter = True/False) The original function was coded in 2008 for an Ansi version of AutoIt.
    1 point
  4. You have to convert the %date:~-4,4% format from Batch to AutoIt format! Look for the date functions or date macros. Br, UEZ
    1 point
×
×
  • Create New...