Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (88 - 90 of 3866)

Ticket Resolution Summary Owner Reporter
#2984 Fixed _GUICtrlListView_GetViewDetails and _GUICtrlListView_GetViewLarge returning wrong results water
Description

In 3.3.12.0 the script breaking changes tell us that

_GUICtrlListView_GetView() and _GUICtrlListView_SetView() were using 0 for detailed view and 1 for large icon view, when it's 0 for large icon view and 1 for detailed view.

_GUICtrlListView_GetViewDetails und _GUICtrlListView_GetViewLarge have not been changed accordingly.

Func _GUICtrlListView_GetViewDetails($hWnd)
	Return _GUICtrlListView_GetView($hWnd) = 0
EndFunc   ;==>_GUICtrlListView_GetViewDetails

should be

Func _GUICtrlListView_GetViewDetails($hWnd)
	Return _GUICtrlListView_GetView($hWnd) = 1
EndFunc   ;==>_GUICtrlListView_GetViewDetails

And

Func _GUICtrlListView_GetViewLarge($hWnd)
	Return _GUICtrlListView_GetView($hWnd) = 1
EndFunc   ;==>_GUICtrlListView_GetViewLarge

should be

Func _GUICtrlListView_GetViewLarge($hWnd)
	Return _GUICtrlListView_GetView($hWnd) = 0
EndFunc   ;==>_GUICtrlListView_GetViewLarge

Can anyone confirm that this is true?

#3822 Completed Helpfile for MsgBox: Comment for return values TRY AGAIN and CONTINUE is missing Melba23 water
Description

There is a footnote marker for the return values TRY AGAIN and CONTINUE but the footmark itself is missing. According to this post https://www.autoitscript.com/forum/topic/36786-msgbox-on-button-click-continue-script/ it should be something like this: "Try Again" and "Continue" only work on Windows 2000/XP and above

#3823 Fixed Helpfile: Language Reference - Variables: Section Arrays and Maps refers to function TableKeys Jpm water
Description

Helpfile: Language Reference - Variables: Section Arrays and Maps. "TableKeys" should be replaced with "MapKeys".

Note: See TracQuery for help on using queries.