Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (67 - 69 of 3866)

Ticket Resolution Summary Owner Reporter
#3673 Rejected $aSelectedItems already declared/assigned in GuiListView.au3 func _GUICtrlListView_SimpleSort careca
Description

I got this warning, not really a bug, but not really supposed to be there, is it?

"C:\Program Files (x86)\AutoIt3\SciTE\..\AutoIt3.exe" "C:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.au3" /run /prod /ErrorStdOut /in "D:\Progs\01 Install\Autoit Scripts\MirrorDir\MirrorDir 1.3.au3" /UserParams

+>09:06:38 Starting AutoIt3Wrapper v.18.708.1148.8 SciTE v.4.1.0.0 Keyboard:00000816 OS:WIN_10/ CPU:X64 OS:X64 Environment(Language:0409) CodePage:0 utf8.auto.check:4 +> SciTEDir => C:\Program Files (x86)\AutoIt3\SciTE UserDir => C:\Users\W10\AppData\Local\AutoIt v3\SciTE\AutoIt3Wrapper SCITE_USERHOME => C:\Users\W10\AppData\Local\AutoIt v3\SciTE

Running Tidy (18.708.1148.0) from:C:\Program Files (x86)\AutoIt3\SciTE\tidy

+>09:06:39 Tidy ended.rc:0

Running AU3Check (3.3.15.1) params:-d -w 1 -w 2 -w 3 -w- 4 -w 5 -w 6 -w- 7 from:C:\Program Files (x86)\AutoIt3 input:D:\Progs\01 Install\Autoit Scripts\MirrorDir\MirrorDir 1.3.au3

"C:\Program Files (x86)\AutoIt3\Include\GuiListView.au3"(4499,103) : warning: $aSelectedItems already declared/assigned

Local $aSelectedItems = StringSplit(_GUICtrlListView_GetSelectedIndices($hWnd), $vSeparatorChar)

D:\Progs\01 Install\Autoit Scripts\MirrorDir\MirrorDir 1.3.au3 - 0 error(s), 1 warning(s) ->09:06:39 AU3Check ended. Press F4 to jump to next error.rc:1

Running:(3.3.15.1):C:\Program Files (x86)\AutoIt3\autoit3.exe "D:\Progs\01 Install\Autoit Scripts\MirrorDir\MirrorDir 1.3.au3"

+>Setting Hotkeys...--> Press Ctrl+Alt+Break to Restart or Ctrl+Break to Stop +>09:11:08 AutoIt3.exe ended.rc:0 +>09:11:08 AutoIt3Wrapper Finished.

Exit code: 0 Time: 271.1

#1806 No Bug $iBase in _ArrayUnique() not working properly UEZ
Description
#include <Array.au3>
Dim $aArray[10] = [1, 2, 3, 4, 5, 1, 2, 3, 4, 5]
_ArrayDisplay($aArray, "$aArray")
$aNewArray = _ArrayUnique($aArray, 1, 0) ;Using Default Parameters
_ArrayDisplay($aNewArray, "$aNewArray represents the 1st Dimension of $aArray")

Should return a 0 based array but it doesn't because of line 1414 in Array.au3 -=> $aArrayTmp = StringSplit(StringTrimRight($sHold, StringLen($vDelim)), $vDelim, 1) ;Split the string into an array

Is working with line: -=> $aArrayTmp = StringSplit(StringTrimRight($sHold, StringLen($vDelim)), $vDelim, 2 - $iBase) but a $iBase check needs to be implemented before to avoid any numbers outside 0,1!

Br, UEZ

#927 No Bug $msg[2] = 0x00000000 in TreeView Dennis.Miller@…
Description

When using TreeView and GUIGetMsg(1) any time a items is selected the $msg array returns $msg Array = '-11|0x00DE035C|0x00000000|41|105'

In the documentation it states that $msg[2] should be the control handle if I use

$msg[2] = _GUICtrlTreeView_GetSelection($tvSysInfo)

I can set the control handle in the array.

$array[0] = 0 or Event ID or Control ID $array[1] = The window handle the event is from $array[2] = The control handle the event is from (if applicable) $array[3] = The current X position of the mouse cursor (relative to the GUI window) $array[4] = The current Y position of the mouse cursor (relative to the GUI window)

Note: See TracQuery for help on using queries.