Custom Query (3926 matches)
Results (352 - 354 of 3926)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #3638 | No Bug | _GUICtrlListView_GetItemText online documentation error | ||
| Description |
There is an error in the description of the parameters of _GUICtrlListView_GetItemText function : It says for the first parameter "$hWnd" : "Control ID/Handle to the control" Handle is working, not Control ID (no conversion in the UDF) Thanks |
|||
| #3637 | Fixed | _ArrayDisplay : error when Array is empty and Range parameter exists | ||
| Description |
#include <Array.au3> Global $aHistorique[1][10] = [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]] _ArrayDisplay($aHistorique, "Title 1") ; shows 1 row (ok) _ArrayDelete($aHistorique, 0) _ArrayDisplay($aHistorique, "Title 2") ; shows no row (ok) _ArrayDisplay($aHistorique, "Title 3", "|5") ; blocking error Script stops and Console shows : "C:\Program Files\AutoIt3\Include\ArrayDisplayInternals.au3" (343) : ==> Variable subscript badly formatted.: $vTmp = $aArray[$i][$j] $vTmp = $aArray[ ERROR
If the Array had one dimension only, the same error would happen at line 345 => $vTmp = $aArray[$i] A display of the variables shows that $i = -1 in both cases. |
|||
| #3636 | Fixed | Prevent Ampersand Mnemonic from SplashTextOn Dialog | ||
| Description |
The SplashTextOn dialog treats an ampersand in the 'text' parameter as a hotkey mnemonic prefix indicator unless the ampersand is doubled, even though the static text control in the dialog isn't a clickable-action control. The $SS_NOPREFIX style flag should be applied to the static control inside the SplashTextOn window to prevent this. Test script: SplashTextOn("Sample", "This&That", 200, 100) |
|||
