Custom Query (3921 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (358 - 360 of 3921)

Ticket Resolution Summary Owner Reporter
#1326 No Bug _GuiCtrlListView_DeleteItem does not handle control ID correctly Gary martin
Description

_GuiCtrlListView_DeleteItem works if the listview handle is passed but not if the control ID is passed. The existing function is

; #FUNCTION# ====================================================================================================================
; Name...........: _GUICtrlListView_DeleteItem
; Description ...: Removes an item from a list-view control
; Syntax.........: _GUICtrlListView_DeleteItem($hWnd, $iIndex)
; Parameters ....: $hWnd        - Control ID/Handle to the control
;                  $iIndex      - Zero based index of the list-view item to delete
; Return values .: Success      - True
;                  Failure      - False
; Author ........: Gary Frost (gafrost)
; Modified.......:
; Remarks .......:
; Related .......: _GUICtrlListView_DeleteAllItems, _GUICtrlListView_DeleteItemsSelected
; Link ..........:
; Example .......: Yes
; ===============================================================================================================================
Func _GUICtrlListView_DeleteItem($hWnd, $iIndex)
	If $Debug_LV Then __UDF_ValidateClassName($hWnd, $__LISTVIEWCONSTANT_ClassName)

	If IsHWnd($hWnd) Then
		Return _SendMessage($hWnd, $LVM_DELETEITEM, $iIndex) <> 0
	Else
		Local $ctrlID = _GUICtrlListView_GetItemParam($hWnd, $iIndex)
		If $ctrlID Then Return GUICtrlDelete($ctrlID) <> 0
	EndIf
	Return False
EndFunc   ;==>_GUICtrlListView_DeleteItem

This could be

Func _GUICtrlListView_DeleteItem($hWnd, $iIndex)
	If $Debug_LV Then __UDF_ValidateClassName($hWnd, $__LISTVIEWCONSTANT_ClassName)

	If IsHWnd($hWnd) Then
		Return _SendMessage($hWnd, $LVM_DELETEITEM, $iIndex) <> 0
	Else
	 Return GuiCtrlSendMsg($hWnd, $LVM_DELETEITEM, $iIndex,0)  <> 0
	EndIf
EndFunc   ;==>_GUICtrlListView_DeleteItem
#1330 No Bug _GUICtrlListView_CreateSolidBitMap() - the same as _WinAPI_CreateSolidBitmap() Gary Zedna
Description

_GUICtrlListView_CreateSolidBitMap in GUIListView.au3 include file is just wrapper over _WinAPI_CreateSolidBitmap without any added functionality and it has nothing to do with ListView control.

I think it should be deleted and in ListView examples where it's used it should be replaced by _WinAPI_CreateSolidBitmap

Example where it's used (there are more examples in helpfile) is in helpfile for _GUICtrlListView_CreateDragImage()

#1333 No Bug Some AUTOIT scripts does not work with SMS/SCCM sudheer_bangera@…
Description

Some of the scripts created using AUTOIT versions later than 3.1.1 does not work when deployed using SMS/SCCM on the machine where users is not logged in. It works fine when deployed using SMS/SCCM on the machine where users are logged in. Also the compiled EXE works fine when run manually on any particular machine.

Is there any pre-requisite to have the explorer running for the AUTOIT compiled exe to run as desired ?? Please note that this issue is reported only for AUTOIT versioned later than 3.1.1

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.