From: Peter E. <Pet...@at...> - 2001-02-05 16:34:22
|
I've never been able to get the -accel's to work either. Good luck, I am looking forward to seeing the resolution on this. -----Original Message----- From: Erick J. Bourgeois [mailto:er...@e-...] Sent: Saturday, February 03, 2001 10:00 AM To: per...@li... Subject: Re: [perl-win32-gui-users] AcceleratorTable The subs that you supplied do not respond to the keys either. Any more ideas? erick never stop questioning www.jeb.ca <http://www.jeb.ca> ----- Original Message ----- From: Peter Eisengrein <mailto:Pet...@at...> I may be wrong, but I've found that you cannot call a _Click() directly (you actually have to Click on something). I'd try this with your subs: sub Open_Click { Open(); } sub Open { my $file=GUI::GetOpenFileName(-title=>"File To Open", -filter=>["*.*"],); } sub OpenHK_Click { Open; } |