Custom Query (3921 matches)
Results (343 - 345 of 3921)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #3644 | No Bug | ArrayDisplayInternals.au3 - used magic numbers as constants | ||
| Description |
In ArrayDisplayInternals.au3 UDF are used magic numbers as constants instead of named constants as it is in other UDF include files. Example: ArrayDisplayInternals.au3 / _ArrayDisplay_SortItems() - $HDF_SORTDOWN, $HDF_SORTUP, ... ... Analogic function where it's correct: GuiListView.au3 / _GUICtrlListView_SortItems() |
|||
| #3643 | No Bug | For...To...Step...Next - variable is NOT (see Remarks in AutoIt Help) in Local scope! | ||
| Description |
#include <AutoItConstants.au3>
Local $sScope, $sRemarks = ' --> Remarks: The variable will be created automatically with Local scope, even when MustDeclareVars is on.'
ConsoleWrite('> For $i = 0 To 1 Step 1' & @CRLF)
For $i = 0 To 1 Step 1
ConsoleWrite('@ $i = ' & $i & @CRLF)
Next
Switch IsDeclared('i')
Case $DECLARED_GLOBAL ; 1
$sScope = '! $i = $DECLARED_GLOBAL ( 1) '
Case $DECLARED_LOCAL ; -1
$sScope = '+ $i = $DECLARED_LOCAL (-1) '
Case $DECLARED_UNKNOWN ; 0
$sScope = '- $i = $DECLARED_UNKNOWN ( 0) '
EndSwitch
ConsoleWrite($sScope & $sRemarks & @CRLF)
|
|||
| #3642 | Fixed | AutoItX/ControlTreeView - wrong example in HelpFile | ||
| Description |
AutoItX/ControlTreeView --> example in HelpFile is missing and instead there is wrong/bugged example for ControlListView: Set oAutoIt = WScript.CreateObject("AutoItX3.Control")
oAutoIt.ControlListView "C:\", "", "SysTreeView321", "SelectAll", "", ""
oAutoIt.ControlListView "C:\", "", "SysTreeView321", "Deselect", "2", "5"
|
|||
Note:
See TracQuery
for help on using queries.
