I wasn't sure if you did, sorry. I think there is a way to do what you want,
but I can't help. Hope someone else jumps in.
Eric
-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Thomas, Timothy B
Sent: Wednesday, January 05, 2000 4:33 PM
To: '[EMAIL PROTECTED]'
Subject: RE: [perl-win32-gui] Shortcut Keys
I know about the using the & to access the menu via ALT, but what about
Function Keys? or CTRL+a Character, etc....?????
----------------------------------------------------------------------------
---------------------
Tim Thomas
Unix Systems Administrator
Lockheed Martin EIS · Denver Data Center
303-430-2281 · Pager 800-545-3704
mailto:[EMAIL PROTECTED]
Pager: mailto:[EMAIL PROTECTED]
----------------------------------------------------------------------------
---------------------
> -----Original Message-----
> From: Eric C. Hansen [SMTP:[EMAIL PROTECTED]]
> Sent: Wednesday, January 05, 2000 1:04 PM
> To: [EMAIL PROTECTED]
> Subject: RE: [perl-win32-gui] Shortcut Keys
>
> Place the & character before the character that you would like the user
> to
> use with the ALT key. example ALT-F, ALT-L will run FILE->Load EDI/ASN
> File.
>
> Regards,
> Eric
>
> use Win32::GUI;
>
> $M = new Win32::GUI::Menu(
> "&File" => "File",
> " > &Load EDI/ASN File" => "Load",
> " > Create &CRM File" => "CreateCrm",
> " > Create &Bill File" => "CreateBil",
> " > &Exit" => "Exit",
> "&Browse" => "DBBrowse",
> " > &Browse Database by PO#" => "Browse",
> " > &View Event Logs" => "ViewLog",
> "&Reports" => "Reports",
> " > &Shipper Report" => "Shipper",
> " > &Tracking Number Report" => "TrackNum",
> "&Update" => "Update",
> " > &Destructive Database Delete" => "Delete",
> " > &Receive a Tracking#" => "Receive",
> "&Help" => "Help",
> " > &About - EDI/ASN Module Menu" => "About",
> );
>
>
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of Thomas, Timothy B
> Sent: Wednesday, January 05, 2000 1:10 PM
> To: '[EMAIL PROTECTED]'
> Subject: [perl-win32-gui] Shortcut Keys
>
>
> Does anyone know how to assign shortcut keys to Menu items. Like F5
> associated with a View | Refresh?
> Thanks,
> Tim Thomas