Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/11/2013 in all areas

  1. BrewManNH

    Parsing and Removal

    If it's just the IP address a colon and the port number, use something like this. $sString = "255.255.255.255:12345" $sNewString = StringLeft($sString, StringInStr($sString, ":") - 1) Consolewrite( $sNewString & @CRLF)
    2 points
  2. Yea right ... I am generally know to post shit in these forums. Anyway, when you want help you have to share information, but the UDF works so that means to me you are doing something wrong. Jos
    1 point
  3. guinness

    How to send windows key

    I was just about to post. That doesn't work on Windows 7. This does though. Send('{LWINDOWN}') Send('{LWINUP}')
    1 point
  4. Jos

    How to send windows key

    Or just Send("{LWIN}") Jos
    1 point
  5. guinness

    How to send windows key

    Send("#r") ; But removing the r doesn't work as you would expect. I personally stay away from Send.
    1 point
  6. Hey, You could give UDF a try ; #FUNCTION# ==================================================================================================================== ; Name...........: _SetObjectOwner ; Description ...: Sets the owner of an object. ; Syntax.........: _SetObjectOwner($oName, $_SE_OBJECT_TYPE, $AccountName) ; Parameters ....: $oName - The name or handle to the object. This can be a path to a file or folder, a registry key, ; + a service name, a process handle, etc. See the comments on the _SE_OBJECT_TYPE enum for more info. ; $_SE_OBJECT_TYPE (Optional) - The type of the object to set permissions. This must be one of the values of the ; +_SE_OBJECT_TYPE enum. The default is $SE_FILE_OBJECT (a file or folder). ; $AccountName (Optional) - The account name or SID string to set. the default is the administrators group. ; +Can be any user name or SID string, see GetSidStruct() for more info. ; Return values .: Success - 1 ; Failure - 0 and sets @error ; Author ........: FredAI ; Modified.......: ; Remarks .......: ; Related .......: _GetSidStruct ; Link ..........: ; Example .......: _SetObjectOwner('C:\Example.txt')
    1 point
  7. ISN AutoIt Studio Version 0.93 is online! Changes Version 0.93 BETA: (translated by google translator) -> AutoIt ISN Studio: <- ----------------------------------- - Fix: Fix the auto-configuration of program paths in Portable Mode - Bugfix: Various bug fixes in "DBUG" tool (thx to pandel!) - Fix bug with "file has been modified from auserhalb ISN" was finally solved! - Fix: Fixed a bug where the project tree when changing a tab disappears - Bugfix: Various bug fixes - NEW: Dutch language added (thx to junkew) - NEW: In the script editor in the autocomplete box now displays icons (icons based on the code coloring scheme (old / new)) - NEW: New hotkey: Open the selected file (eg. Include) (CTRL + I) - NEW: in the code a file path is specified (eg. "C: test.jpg"), this file can now be performed via "right click -> Open File" or CTRL + I to open! - NEW: Show Code Snippet: Right-click on a function in the script tree - "Show code snippet"> choose. The displayed image can even be edited as required! - NEW: Chinese language update - NEW: Runtime in debug window is now in format "00:00:00" (hh: mm: ss) indicated - NEW: "Start this program" The macro now supports path variables (eg.% projectdir%) - NEW: TidySource.au3 was removed. The menu item Tools -> Tidy source used now the "real" Tidy! (Data Tidy Tidy.exe) - NEW: When opening a project (however must be enabled in the program settings!) The previously opened tabs can now be restored - NEW: In the "Tools" menu, you can now find a bit Operations testers! (Bitwise operations visualiser by Siao) - NEW: The ISN AutoIt Studio now uses a newer version of SciLexer.dll - NEW: If text is highlighted in the script editor automatically searches for the word mark and color-coded in real time! (Can be disabled in the Preferences again) - NEW: you insert a new macro with the info messages in the log window of the ISN can (at left below) - NEW: elements in the project tree are now on the file type "together" and then in alphabetical order - NEW: In the project management and the project properties you can now by clicking the "Edit main file" another main file for your project yet!
    1 point
×
×
  • Create New...