Custom Query
Results (265 - 267 of 3893)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #3150 | Rejected | Add new functions to GuiListView UDF | anonymous | |
| Description |
Please add new function to GuiListView UDF: _GUICtrlListView_GetFirstSelectedIndice($hWnd) In many cases only first selected indice is needed and also it would be faster, than _GUICtrlListView_GetSelectedIndices() Func _GUICtrlListView_GetFirstSelectedIndice($hWnd) Local $iRet, $iCount = _GUICtrlListView_GetItemCount($hWnd) For $iItem = 0 To $iCount If IsHWnd($hWnd) Then $iRet = _SendMessage($hWnd, $LVM_GETITEMSTATE, $iItem, $LVIS_SELECTED) Else $iRet = GUICtrlSendMsg($hWnd, $LVM_GETITEMSTATE, $iItem, $LVIS_SELECTED) EndIf If $iRet Then Return Number($iItem) EndIf Next Return SetError(1,0,0) EndFunc ;==>_GUICtrlListView_GetSelectedIndices |
|||
| #3149 | Completed | Add new functions to SQLite UDF | Jpm | anonymous |
| Description |
Please add new functions to SQLite UDF (or modify existent): _SQLite_GetTable2d() and _SQLite_GetTable() to
|
|||
| #2440 | Rejected | Add official multipPorcessing.au3 likes python | oceanwaves | |
| Description |
I know autoit will not support multiple-threads, but I think multiple-processing is necessary, just like python, it can provide locker, communication between mutiple processing, etc. Actually, even in python, it suggests using multiple processes other than multiple-threads for performance. python multiprocessing: http://docs.python.org/3.3/library/multiprocessing.html |
|||
