Custom Query
Results (46 - 48 of 3827)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#46 | Fixed | Wrong example _ArrayTrim in help | Gary | Emiel Wieldraaijer |
Description |
#include <Array.au3> Dim $avArray[5] $avArray[0] = "ab" $avArray[1] = "bc" $avArray[2] = "cd" $avArray[3] = "de" $avArray[4] = "ef" $aNewArray = _ArrayTrim( $avArray, 1, 1,1,3) _ArrayDisplay($aNewArray,"demo _ArrayTrim") Exit ;The new array in order should now be "a", "b" , "c" , "d", "e". Should Be #include <Array.au3> Dim $avArray[5] $avArray[0] = "ab" $avArray[1] = "bc" $avArray[2] = "cd" $avArray[3] = "de" $avArray[4] = "ef" $aNewArray = _ArrayTrim( $avArray, 1, 1,0,4) _ArrayDisplay($aNewArray,"demo _ArrayTrim") Exit ;The new array in order should now be "a", "b" , "c" , "d", "e". _ArrayTrim( $avArray, 1, 1,0,4) instead of _ArrayTrim( $avArray, 1, 1,1,3) |
|||
#47 | Rejected | FileInstall() to use the same Flag values as FileCopy | Bowmore | |
Description |
I would like FileInstall() to use the same Flag parameter values as FileCopy(). The two function essentially perform the same function copying a file from one location to another the only significant difference being that the source used by FileInstall() is fixed i.e. the compiled script. Quote:form FileCopy help flag [optional] this flag determines whether to overwrite files if they already exist. Can be a combination of the following: 0 = (default) do not overwrite existing files 1 = overwrite existing files 8 = Create destination directory structure if it doesn't exist (See Remarks). |
|||
#48 | Fixed | _GUICtrlTab_GetItemState, _GUICtrlTab_SetItemState not working | Gary | Gary |
Description |
State Mask not set in _GUICtrlTab_GetItem and _GUICtrlTab_SetItem |
Note: See TracQuery
for help on using queries.