Jump to content

Recommended Posts

Posted (edited)

i want all the items to be checked in a tree view but i cant there is not such command in _GUICtrlTreeViewSetState()

thanks in advance

Edited by c4nm7
Posted (edited)

Hi,

By posting your code or parts from it will help us to check your program and help you answerin the question

Edited by Pakku
Posted

Hi,

By posting your code or parts from it will help us to check your program and help you answerin the question

Arjan

ok here it is:

#include <GuiTreeView.au3>
$Tree = GUICtrlCreateTreeView(16, 170, 206, 260,$TVS_CHECKBOXES)
$TreeItem1 = GUICtrlCreateTreeViewItem("cache", $Tree)
_GUICtrlTreeViewSetState($Tree, $TreeItem1, ???)

i dont know what to put on the ??? , all i want is the tree view items checked...

Posted

ok here it is:

#include <GuiTreeView.au3>
$Tree = GUICtrlCreateTreeView(16, 170, 206, 260,$TVS_CHECKBOXES)
$TreeItem1 = GUICtrlCreateTreeViewItem("cache", $Tree)
_GUICtrlTreeViewSetState($Tree, $TreeItem1, ???)

i dont know what to put on the ??? , all i want is the tree view items checked...

Doesn't work from there. Try PaulIA's Auto3Lib, in the TreeView.au3 UDF, and the _TreeView_SetChecked() function. That should do it.

:whistle:

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Posted

Doesn't work from there. Try PaulIA's Auto3Lib, in the TreeView.au3 UDF, and the _TreeView_SetChecked() function. That should do it.

:whistle:

ok thanks!

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...