Jump to content

Search the Community

Showing results for tags 'arguments'.

  • Search By Tags

    • arguments ×
    Type tags separated by commas.
  • Search By Author

Content Type



Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Found 6 results

  1. Im creating a tab Global $Tab1 = GUICtrlCreateTab(30, 30, 600, 420, $TCS_BUTTONS, -1) And what we see in the function reference: https://www.autoitscript.com/autoit3/docs/functions/GUICtrlCreateTab.htm GUICtrlCreateTab ( left, top [, width [, height [, style = -1 [, exStyle = -1]]]]...
  2. If I am using a RunWait command to launch a batch file from within an AutoIt script, how can I pass a variable to said batch file so that the batch file can utilize said variable like in a %var% format? Thank you in advance.
  3. Hello all! I'm trying to make a little script that sends a message over TCP. An example payload would be: MY_PAYLOAD#<ATTRS><ATTR><NAME>MAILSERVER</NAME><OPERATION>set_value(ServiceStatus)</OPERATION><VALUE><![CDATA["Not Running"]]></VALUE><TIMESTAMP>1349297031</TIMESTAMP></ATTR></ATTRS>Note how t...
  4. I need to write a code in which I am reading a text file which is of .vbs format and in that a line contains function signature like below Function CreateEnvironmentVariable($sType, $sName, $sValue, $bOverwrite) If the string is in above format, then I need to check number of arguments in it. For in...
  5. The best example is MouseClick, where you have MouseClick($Button, [$x, $y, [..........]]) Where if X is set, Y must be set too. I do know how to make it so that X and Y are optional, but I am not sure how to get Y mandatory if X is set. I did check the help, but didn't see anything there. Thanks in...
  6. I Compile this: #include <Array.au3> #include <WinAPIShPath.au3> Local $aData = _WinAPI_CommandLineToArgv('"a b" c d') _ArrayDisplay($aData, '_WinAPI_CommandLineToArgv') Pass commandline arguments with cmd and I get this: Thanks in advance
×
×
  • Create New...