Custom Query (3927 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (58 - 60 of 3927)

Ticket Resolution Summary Owner Reporter
#4022 Fixed Various Duplicated words in the Help file. Jpm anonymous
Description

User Defined Function Reference / GuiListBox user defined functions Reference Function List Description:

  • _GUICtrlListBox_GetHorizontalExtent Retrieve from a list box the the scrollable width
  • _GUICtrlRichEdit_GetTextInRange Gets the text from from one inter-character position to another

GUI Control Styles Treeview Constants Description: $TVS_RTLREADING Normally, tree view text will be displayed in same direction as the the text in its parent window.

FileCreateShortcut Remarks: Also, if you create a shortcut with the same path\name as as a pre-existing shortcut, it gets overwritten with your new version.

#include-once Remarks: It is quite common to have the same "#include <filename.au3>" line in several of the files included included in a script.

RegWrite Example 1(RegWrite.au3) Line 27: MsgBox($MB_SYSTEMMODAL, "", "Open RegEdit.exe and navigate the the registry key ""HKEY_CURRENT_USER\Software\AutoIt_Example"".")

Send Remarks: Opt("SendKeyDelay",...) alters the the length of the brief pause in between sent keystrokes.

WinActivate Remarks: After a successful activation @extended is set to 1 if the the window was already active, 2 if not.

$tagOPENFILENAME Description (Also in description in listing StructureConstants user defined functions Reference): Contains information information that the GetOpenFileName and GetSaveFileName functions use to initialize an Open or Save As dialog box

$tagWIN32_FIND_DATA Parameters: ftLastWriteTime A FILETIME structure that specifies when when the file was last written to, truncated, or overwritten.

_ArrayInsert Remarks x2:

  • $vRange can be a string containing the rows above which a row is to to be inserted.
  • $vRange can also be a 1D array containing the rows above which a row is to to be inserted with the count in the [0] element].

_GDIPlus_PenSetDashStyle Parameters: $GDIP_DASHSTYLECUSTOM - A a user-defined, custom dashed line

_GDIPlus_PenGetDashStyle Return Values: $GDIP_DASHSTYLECUSTOM - A a user-defined, custom dashed line

_GUICtrlListBox_GetHorizontalExtent Description: Retrieve from a list box the the scrollable width

_GUICtrlRichEdit_GetTextInRange Description: Gets the text from from one inter-character position to another

_INetGetSource Return values: Failure: an empty string and and sets the @error flag to non-zero.

_viOpen Parameters: $sVisa_Address A VISA resource descriptor STRING (see the NOTES of _viExecCommand() above for more info) As as shortcut you can also directly pass a GPIB address as an integer

_WinAPI_ConfirmCredentials Remarks: This function function must be called after each successful call to _WinAPI_ShellUserAuthenticationDlg() with the $CREDUI_FLAGS_EXPECT_CONFIRMATION flag set.

_WinAPI_FindFirstStream Remarks: This function function opens a search handle and returns information about the first stream in the specified file or directory.

_WinAPI_GetThemePartSize Parameter: $iPartID The part part to calculate the size of.

_WinAPI_RegOpenKey Remarks: The $sSubKey parameter can be an an empty string.

_GUICtrlListBox_GetHorizontalExtent Description: Retrieve from a list box the the scrollable width

_GUICtrlRichEdit_GetTextInRange Description: Gets the text from from one inter-character position to another

#4021 Fixed _GUICtrlRichEdit_Create Help file has duplicated word(s) Jpm anonymous
Description

Under the "Return Value" section of the help file for _GUICtrlRichEdit_Create, two of the error returns have a duplicated "is".

107 - $iStyle is is neither a positive number nor zero nor -1 108 - $iExStyle is is neither a positive number nor zero nor -1

#4019 Works For Me Little bug in ArrayDisplayInternals pixelsearch
Description

Hello jpm I think there's something missing in ArrayDisplayInternals.au3 (version 3.3.16.1)

Switch VarGetType($sTemp)
	Case "Array"
		Local $sSubscript = ""
		For $i = 1 To UBound($sTemp, 0)
			$sSubscript = "[" & UBound($sTemp, $i) & "]"
		Next

It should be :

			$sSubscript &= "[" & UBound($sTemp, $i) & "]"

Without &= then a 2D array will always be displayed as a 1D array, with only 1 pair of brackets containing... the number of columns.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.