Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (268 - 270 of 3933)

Ticket Resolution Summary Owner Reporter
#3148 Rejected Add new events to GUIGetMsg() anonymous
Description

Please add new event to GUIGetMsg() : $GUI_EVENT_PRIMARYDOUBLECLICK: primary mouse button double click.

#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

  • get Only DataRows (without header) zero based array and array with count in zeroth element
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.