Custom Query (3910 matches)
Results (355 - 357 of 3910)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1213 | Fixed | _GUICtrlListView_AddArray adds a second array incorrect to an existing listview | ||
| Description |
When using the _GUICtrlListView_AddArray function, the first array is added correctly. When a second array is added, the first column is added correctly, but the other colums overwrite the already added data. code to reproduce: Dim $aTableData1[3][2] = [[10,11],[12,13],[14,15]]
Dim $aTableData2[3][2] = [[20,21],[22,23],[24,25]]
For $col=0 To UBound($aTableData1,2)-1
_GUICtrlListView_AddColumn($List2, $aTableData1[0][$col])
ConsoleWrite("add coll"&@CRLF)
Next
_GUICtrlListView_AddArray($List2, $aTableData1)
_GUICtrlListView_AddArray($List2, $aTableData2)
The output of this should be: 10 11 12 13 14 15 20 21 22 23 24 25 but you get: 10 21 12 23 14 25 20 22 24 |
|||
| #1215 | Fixed | _arrayDisplay() displays incorrectly when pipe character is is present in flelds. | ||
| Description |
Environment = 3.3.1.1 under WIN_XP/Service Pack 3 X86 In AutoIt beta 3.3.1.1 _arrayDisplay() displays data incorrectly under specific conditions. When the default separator character is "|" and is present in the array data, the _arrayDisplay() displays rows twice and columns that contain the separator character are truncated at the separator character. AutoIt 3.3.0.0 truncates data in columns but does not display rows twice. Reproduction Script #include <array.au3> ;displays rows twice and only data up to pipe character in second column Global $a[5][2] = [[1,"a|A"],[2,"b|B"],[3,"c|C"],[4,"d|D"],[5,"e|E"]] _ArrayDisplay($a) ;displays correctly Global $a[5][2] = [[1,"a,A"],[2,"b,B"],[3,"c,C"],[4,"d,D"],[5,"e,E"]] _ArrayDisplay($a) A possible fix is to add the following lines If $sSeparator = $sReplace Then
If $sSeparator = Chr(124) Then
$sReplace = Chr(126)
Else
$sReplace = Chr(124)
EndIf
EndIf
immediately after this line in _arrayDisplay(). If $sSeparator = "" Then $sSeparator = Chr(124) |
|||
| #1218 | Fixed | Buttons appear flat | ||
| Description |
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 229, 50, 192, 124)
$Button1 = GUICtrlCreateButton("Button1", 77, 12, 75, 25, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
|
|||


