Jump to content

Why this script doesn't work?


Recommended Posts

#include <GuiConstants.au3>
#Include <GuiTreeView.au3>

$gui = GUICreate('', 200, 200)
$l=GUICtrlCreateTreeView(10,10,100,50)
GUICtrlCreateTreeViewItem('test1',$l)
GUICtrlCreateTreeViewItem('test2',$l)
GUISetState()

While 1
    $m=GUIGetMsg()
    Select
        Case $m=$GUI_EVENT_CLOSE
            ExitLoop
        Case $m=$l
            $mm=_GUICtrlTreeView_Index($l,_GUICtrlTreeView_GetSelection($l))
            MsgBox(0,'',$mm)
    EndSelect
WEnd

Why it doesn't work?

Edited by FSoft
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...