Custom Query
Results (151 - 153 of 3871)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#519 | Fixed | Wrong parameters in help file for GUICtrlSetDefBkColor | Jpm | GEOSoft |
Description |
GUICtrlSetDefBkColor mistakingly uses the same parameters table as GUICtrlSetDefColor deftextcolor = Default text color for all controls should be changed to color = Default background color for all controls. |
|||
#531 | Fixed | GuiCtrlSetGraphic documentation | Valik | koshyjohnuk |
Description |
This is not major. Just a couple of mistakes in the help file for the entry relating to GuiCtrlSetGraphic. The line being refered to appears under remarks: "Due to design constraints the RECT ELLIPSE and PIE are drawn first whatever they are embedded. So a LINE will always be drawn over a RECT. It is better to created several graphic controls with their own graphics because in this case the controls graphic will be drawn in sequence." From what I understand, 'whatever' should be replaced by 'whenever' and 'created' by 'create'. In my opinion, the second line could be rephrased for clarity. |
|||
#533 | Fixed | _ArrayBinarySearch allows multi-dimension array when it shouldn't | Gary | Triblade |
Description |
It's my coding mistake that I tried to use it on a two dimensional array, but it didn't return an error code, but 'crashed' back to the editor. Error: C:\Program Files\AutoIt3\Include\Array.au3 (102) : ==> Array variable has incorrect number of subscripts or subscript dimension range exceeded.: If $avArray[$iStart] > $vValue Or $avArray[$iEnd] < $vValue Then Return SetError(2, 0, -1) If ERROR ->15:51:57 AutoIT3.exe ended.rc:1 It's the same error as in bug 166, but with a different array UDF. Possible fix: If UBound($avArray, 0) > 1 Then Return SetError(5, 0, -1) Others I think(!) that have the same issue: _ArrayTrim _ArrayToString (and thus: _ArrayToClip) _ArrayReverse _ArrayPop _ArrayMinIndex _ArrayMin _ArrayMax _ArrayConcatenate _ArrayAdd |