Re: [perl-win32-gui-users] Treeview -> Sort()/SortChildren()

2006-04-29 Thread Steve Loughran
Hi Glenn That works a treat... The docs talk about sorting using nodes, so it never even crossed my mind to sort the entire treeview object. Many thanks Steve Glenn Munroe wrote: Hello Steve, Does this work for you? == #!perl -w use strict; use Win32::GUI

RE: [perl-win32-gui-users] Treeview -> Sort()/SortChildren()

2006-04-29 Thread Glenn Munroe
Hello Steve, Does this work for you? == #!perl -w use strict; use Win32::GUI; my $obMW = new Win32::GUI::Window( -name => "mw", -text => "TreeView", -pos => [ 100, 100 ], -size => [ 200, 200 ], ); my $obTV = $obMW->AddTreeView( -name => "Tre

[perl-win32-gui-users] Treeview -> Sort()/SortChildren()

2006-04-29 Thread Steve Loughran
Hi all After Jason Plum posted the example code for TreeViews (thank you!), I have had no problems at all... until today :) I am creating a treeview and now trying to sort the entries using Sort() or SortChildren(), but neither of these seem to be doing anything. I have tried using indvidual