Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (250 - 252 of 3933)

Ticket Resolution Summary Owner Reporter
#1927 Rejected Add a macro for #AutoIt3Wrapper_Res_Fileversion / %fileversion% lwc
Description

Without it, I have to set both #AutoIt3Wrapper_Res_Fileversion and an internal variable (e.g. $version).

It would great to be able to only have one source for the version (e.g. @fileversion).

Thanks!

#58 Rejected Add a new button Type called Splitbutton ptrex
Description

Addition of the "BS_SPLITBUTTON" type button.

http://msdn2.microsoft.com/en-us/library/bb775951(VS.85).aspx]

This makes it possible to combine a button with a dropdownlist style.

#3514 Completed Add a treeview UDF calling $TVGN_LASTVISIBLE Jpm Crazy
Description

According to MSDN, there is a macro using TVGN_LASTVISIBLE:

TreeView_GetLastVisible

Retrieves the last expanded item in a tree-view control. This does not retrieve the last item visible in the tree-view window. You can use this macro, or you can explicitly send the TVM_GETNEXTITEM message with the TVGN_LASTVISIBLE flag.

However, this functionality seems not included in GuiTreeView.au3. Its definition is somehow not consistent to TreeView_GetFirstVisible. How about adding a UDF named _GUICtrlTreeView_GetLastVisible or _GUICtrlTreeView_GetLastExpandedItem? Its implementation may look like:

Func _GUICtrlTreeView_GetLastVisible($hWnd)

If Not IsHWnd($hWnd) Then $hWnd = GUICtrlGetHandle($hWnd)

Return _SendMessage($hWnd, $TVM_GETNEXTITEM, $TVGN_LaSTVISIBLE, 0, 0, "wparam", "lparam", "handle")

EndFunc ;==>_GUICtrlTreeView_GetLastVisible

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