Jump to content

Recommended Posts

Posted

  On 8/13/2013 at 9:55 PM, guinness said:

Done.

I'm thinking about creating a script to parse these functions.

 

Your idea gave me food for thought.
 
Are you in the appended examples, the result that each function name was a link to a proper description of the Function?

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

I think that if any part of the script is displayed in the "SciTe" in a way that changes the color of the text in the editor, it would be just as well if the documentation presented certain phrases (names of functions, macros, directives, and any other words reserved by the programming language) using adequate colors.

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

  On 8/13/2013 at 10:37 PM, mlipok said:

Your idea gave me food for thought.

 

Are you in the appended examples, the result that each function name was a link to a proper description of the Function?

No. Only those that appear in the remarks for now.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted
  On 8/13/2013 at 10:47 PM, mlipok said:

I think that if any part of the script is displayed in the "SciTe" in a way that changes the color of the text in the editor, it would be just as well if the documentation presented certain phrases (names of functions, macros, directives, and any other words reserved by the programming language) using adequate colors.

I think that the beginner will determine types of elements of programming by color.

Posted
  On 8/13/2013 at 10:49 PM, guinness said:

No. Only those that appear in the remarks for now.

And if in the future?
Is this concept is taken into account?

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 8/13/2013 at 10:52 PM, AZJIO said:

I think that the beginner will determine types of elements of programming by color.

exactly

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

  On 8/13/2013 at 10:53 PM, mlipok said:

And if in the future?

Is this concept is taken into account?

No, not for the next release at least.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

ProcessList - Painted array

; two-dimensional array  [0][0]
$tmp2 = StringRegExpReplace($tmp2, '(?<![\w$>])(\$\w+?)(\[)([\dnx])(\]\[)([\dn])(\])', '<font class="S91">\1</font><font class="S81">[</font><font class="S31">\3</font><font class="S81">][</font><font class="S31">\5</font><font class="S81">]</font>')
; the one-dimensional array of  [0]
$tmp2 = StringRegExpReplace($tmp2, '(?<![\w$>])(\$\w+?)(\[)([\dn])(\])', '<font class="S91">\1</font><font class="S81">[</font><font class="S31">\3</font><font class="S81">]</font>')
Posted

  On 8/13/2013 at 9:46 PM, guinness said:

There is, click the question mark.

 

now I see

Can You change in Language Reference - Operators

  Quote

 

Select conditionally an expression. e.g. $condition ? $expression1 : $expression2    ($expression1 if $condition is True or $expression2 if False)

 

to something like that

 

  Quote
Select conditionally an expression. e.g. $condition ? $expression1 : $expression2    ($expression1 if $condition is True or $expression2 if False). See for ternary operator description.

 

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

  On 8/13/2013 at 11:24 PM, mlipok said:

now I see

Can You change in Language Reference - Operators

to something like that

Already done.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

in GUI Management / GUICreate

  Quote

 

By default the dialog box is non sizable and non maximizable. So WS_SIZEBOX or WS_MAXIMIZEBOX can be used in the style parameter.
As defining only one style just set this style don't forget to combine it with default ones, i.e. just defining WS_SIZEBOX will not set WS_MINIMIZEBOX, WS_CAPTION, WS_POPUP, WS_SYSMENU. So the best method to define a resizeable window is to use WS_OVERLAPPEDWINDOW.

there is not $ mark

for example

WS_SIZEBOX >> $WS_SIZEBOX

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)

I Check History in Beta

  • Added: Array access on expression: StringSplit("a,b", ",")[1]
  • Added: Dot access on expression: ObjCreate("Shell.Application").GetSystemInformation("DirectoryServiceAvailable") 
  • Added: Built-in functions that take a callback now be passed directly in addition to the old method of passing as a string. Built-in functions can also be passed now (be careful that the function you pass matches what the caller expects).
  • Added: Expression as default function parameter.
  • Added: With...EndWith can be used on expressions having dot-access.
  • Added: Nested "With...EndWith". 

 

Whether the documentation is prepared for an example or a description for this new functionality ?.

proposal example:

$sFirstElement = StringSplit('TEST1|TEST2|TEST3', '|')[1]
$sSecondElement = StringSplit('TEST1|TEST2|TEST3', '|')[2]
$sThirdElement = StringSplit('TEST1|TEST2|TEST3', '|')[3]
ConsoleWrite( _
        $sFirstElement & @CRLF & _
        $sSecondElement & @CRLF & _
        $sThirdElement & @CRLF _
        )
Edited by mlipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)
  On 8/13/2013 at 11:39 PM, mlipok said:

in GUI Management / GUICreate

there is not $ mark

for example

WS_SIZEBOX >> $WS_SIZEBOX

 

These constant names are from Microsoft. The dollar sign is added to comply with the current AutoIt syntax. I do not believe this is a mistake, but I also haven't checked the description.

Edited by czardas
Posted (edited)

@Strag EDIT: @Starg

check Your version of HelpFile

write only if something is wrong with current beta version of HelpFile

in v3.3.9.16 (Beta)

StringRegExpReplace ( "test", "pattern", "replace" [, count = 0] )
Edited by mlipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

  On 8/13/2013 at 10:21 PM, mlipok said:

Please do a link in this HelpFiles section (requested link word are underlined

in FileCreateNTFSLink 

in FileDelete

in FileFindFirstFile

in FileGetVersion

in FileWriteLine

in IniWrite

in IniWriteSection

Done. I also did these...

  Reveal hidden contents

Revision: 8509

Author: guinness

Date: 14 August 2013 09:01:28

Message:

Added: Direct links in the remarks.

----

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/ACos.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/ASin.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/ATan.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/Asc.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/Assign.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/AutoItSetOption.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/BinaryToString.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/BitAND.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/BitNOT.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/BitOR.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/BitXOR.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/BlockInput.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/Break.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/CDTray.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/Call.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/Chr.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/ConsoleRead.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/ControlClick.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/ControlCommand.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/ControlSend.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/DirMove.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/DllCall.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/DllCallbackFree.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/DllCallbackGetPtr.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/DllCallbackRegister.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/DllClose.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/DllOpen.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/DllStructCreate.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/DllStructGetData.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/DllStructGetPtr.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/DriveSetLabel.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/DriveSpaceFree.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/DriveSpaceTotal.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/DriveStatus.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/EnvSet.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/EnvUpdate.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/Eval.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileClose.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileCreateNTFSLink.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileCreateShortcut.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileDelete.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileExists.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileFindFirstFile.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileFindNextFile.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileFlush.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileGetAttrib.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileGetEncoding.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileInstall.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileMove.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileOpen.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileRead.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileReadLine.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileSetPos.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileWrite.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FileWriteLine.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/FtpSetProxy.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICreate.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateAvi.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateButton.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateCheckbox.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateCombo.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateDate.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateDummy.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateEdit.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateGraphic.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateGroup.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateIcon.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateInput.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateLabel.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateList.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateListView.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateListViewItem.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateMenuItem.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateObj.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreatePic.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateProgress.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateRadio.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateSlider.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateTab.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateTabItem.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateTreeView.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlCreateTreeViewItem.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlDelete.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlRead.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlRecvMsg.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlSendMsg.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlSetBkColor.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlSetCursor.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlSetData.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlSetFont.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlSetGraphic.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlSetImage.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlSetOnEvent.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUICtrlSetState.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUIGetCursorInfo.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUIGetMsg.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUIGetStyle.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUIRegisterMsg.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUISetAccelerators.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUISetCursor.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUISetOnEvent.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUIStartGroup.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/GUISwitch.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/HotKeySet.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/HttpSetProxy.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/InetClose.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/InetGet.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/IniRead.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/IniWrite.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/IniWriteSection.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/InputBox.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/Int.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/IsDeclared.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/IsInt.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/IsNumber.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/Mod.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/MouseDown.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/MouseMove.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/MouseUp.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/MsgBox.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/ObjCreate.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/ObjCreateInterface.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/PixelSearch.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/ProcessClose.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/ProcessWaitClose.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/ProgressOn.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/Random.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/RegRead.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/Run.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/RunAs.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/RunAsWait.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/RunWait.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/SRandom.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/Send.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/SendKeepActive.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/SetError.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/SetExtended.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/ShellExecute.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/Shutdown.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/SoundPlay.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/SplashImageOn.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/SplashTextOn.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/Sqrt.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StatusbarGetText.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StderrRead.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StdinWrite.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StdoutRead.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringFormat.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringFromASCIIArray.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringInStr.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringIsAlNum.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringIsAlpha.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringIsFloat.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringIsInt.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringIsLower.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringIsSpace.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringIsUpper.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringIsXDigit.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringRegExp.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringReplace.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringSplit.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringStripWS.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringToASCIIArray.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringTrimLeft.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/StringTrimRight.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/TCPNameToIP.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/TCPRecv.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/TCPSend.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/TCPShutdown.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/TCPStartup.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/Tan.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/TimerInit.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/ToolTip.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/TrayItemSetOnEvent.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/TraySetIcon.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/TraySetOnEvent.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/TraySetPauseIcon.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/TraySetToolTip.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/TrayTip.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/UBound.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/VarGetType.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/WinActivate.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/WinClose.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/WinExists.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/WinGetCaretPos.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/WinGetClassList.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/WinGetClientSize.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/WinGetPos.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/WinGetText.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/WinGetTitle.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/WinKill.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/WinMenuSelectItem.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/WinMinimizeAll.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/WinMinimizeAllUndo.txt

Modified : /trunk/docs/autoit/english/txt2htm/txtFunctions/WinMove.txt

  On 8/13/2013 at 10:21 PM, mlipok said:

in FileMove (and please remove " after adding link)

There is no FileRename, so why would I link to it.

  On 8/13/2013 at 10:21 PM, mlipok said:

in FileOpenDialog

in FileSaveDialog

I will consider linking to macros later.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

  On 8/13/2013 at 11:39 PM, mlipok said:

in GUI Management / GUICreate

 

there is not $ mark

for example

WS_SIZEBOX >> 

$WS_SIZEBOXThey are MSDN constants. If a Dev wants me to change then I will. But for now I won't change.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...