Help for this page

Select Code to Download


  1. or download this
    use constant WM_HOTKEY          => 0x0312;
    
  2. or download this
    my ($hwnd, $message, $msg_wParam, $msg_lParam, $time, $pt)
        = unpack 'L L L l L L ', unpack( 'P24', pack('L', $lParam) );
    ...
    if ( $message == WM_HOTKEY ) {
        print "**************************\n";
    }
    
  3. or download this
    use strict;
    use warnings;
    ...
    Win32::GUI::Dialog();
    
    UnregisterHotKey( $mw_handle, MY_HOTKEY_ID ) or die $^E;