Re: [perl-win32-gui-users] "Smart" Combobox

2007-02-19 Thread Glenn W Munroe
.and for the record, here is the finished example, using the Hook mentioned below. #!perl -w use Win32::GUI(); use Win32::GUI::Constants qw(:window /^GW_/); use constant CBN_EDITCHANGE => 5; $mw = new Win32::GUI::Window( -name => "mw", -title=> "Smart C

Re: [perl-win32-gui-users] "Smart" Combobox

2007-02-19 Thread Glenn W Munroe
...and thanks to you for the feedback. It's hard to know sometimes if this kind of stuff might be useful to someone, or if I'm just filling the list up with garbage. There was a slight error in the example, by the way! I forgot the line -onChange => \& cbChange, in the combobox definition. All