gumbitha Posted September 11, 2008 Share 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...>_> Link to comment Share on other sites More sharing options...
oren Posted September 11, 2008 Share 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 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now