[perl-win32-gui-users] RE: win32-gui treeview rightclick context menu

2003-02-14 Thread samuel_chan
Sean thanks for the info. Works like a charm after relative coordinates conversion with ScreenToClient() with Treeview handle. Samuel >Can anyone shed some light on the following? I have a win32-gui treeview >control with multiple nodes. Different nodes carry different properties >and there

Re: [perl-win32-gui-users] RE: win32-gui treeview rightclick context menu

2003-02-14 Thread Sean Healy
That was not really a complete answer to the question. What this person needs to do is: - get info on the node (as described in the above using HitTest(x,y)) - then call Select on that node: my $node = $treeview->HitTest($mouse_x,$mouse_y); $treeview->Select($node); # Now the right node

[perl-win32-gui-users] RE: win32-gui treeview rightclick context menu

2003-02-14 Thread Roelof Bos
In reply to: (my message stands below) > Message: 1 > From: "Sean Healy" <[EMAIL PROTECTED]> > To: perl-win32-gui-users@lists.sourceforge.net, [EMAIL PROTECTED] > Subject: Re: [perl-win32-gui-users] win32-gui treeview rightclick > context menu > Date: Wed, 12 Feb 2003 17:09:06 -0900 > > >Can anyo