Hello
I am trying to mage TreeViewItem with checkbox and single selection only
cant find the right GUI Control Styles
Please advice
Thanks
#include <GUIConstantsEx.au3>
#include <TreeViewConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 623, 449, 192, 114)
$TreeView1 = GUICtrlCreateTreeView(32, 112, 521, 273, BitOR($GUI_SS_DEFAULT_TREEVIEW,$TVS_CHECKBOXES,$TVS_NOSCROLL,$WS_CLIPSIBLINGS))
$TreeView1_0 = GUICtrlCreateTreeViewItem("xzcz", $TreeView1)
$TreeView1_1 = GUICtrlCreateTreeViewItem("xczx", $TreeView1)
$TreeView1_2 = GUICtrlCreateTreeViewItem("xcz", $TreeView1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd