gumbitha 0 Report post Posted September 11, 2008 Does anyone know if it is possible\how to create a tree view with checkboxes next to the items? It is for an installer...>_> Share this post Link to post Share on other sites
oren 0 Report post Posted September 11, 2008 Yes it is Possible.. Style.. Local $iStyle = BitOR($TVS_EDITLABELS, $TVS_HASBUTTONS, $TVS_HASLINES, $TVS_LINESATROOT, $TVS_DISABLEDRAGDROP, $TVS_SHOWSELALWAYS, $TVS_CHECKBOXES) Start of the tree.. $hTreeView = GUICtrlCreateTreeView(2, 2, 150, 150, $iStyle, $WS_EX_CLIENTEDGE) Anyway if its for a installer You might find this usefull.. http://www.autoitscript.com/forum/index.php?showtopic=28464&st=0 Share this post Link to post Share on other sites