Einzelnen Beitrag anzeigen

Bomberbb

Registriert seit: 23. Sep 2003
227 Beiträge
 
#1

Windows 64 bit und Postmessage (Multimediatasten abfangen)

  Alt 26. Feb 2010, 13:33
Hallo,

ich hab seit dem Wechsel auf Windows 7 x64 Probleme mit Postmessage und Sendmessage.

zum einen hab ich hier schon einen Thread SaveWatchList, bei dem ich auch schon Probleme damit habe. Das andere, will ich hier ansprechen. Ich will die Multimediatasten abfangen und selber verarbeiten, damit ich die Tasten neu belegen kann. Das ganze habe ich so programmiert:
Delphi-Quellcode:
Library keyboardhook;

Uses
  Windows,
  Messages,
  Dialogs,
  SysUtils;

Var
  HookHandle :Cardinal=0;
  AppHandle :HWND;

Function KeyboardHookProc (nCode:Integer;wParam:WPARAM;lParam:LPARAM) :LRESULT; Stdcall;
Begin
  Result := CallNextHookEx (HookHandle,nCode,wParam,lParam) ;
  If (nCode<>HC_NOREMOVE) And (nCode=HC_ACTION)
    And (wParam In [$A6..$B7]) //Nur Multimediatasten
  And (lParam=16777217) //Nur KeyDown
  Then
  Begin
    Beep;
    PostMessage (AppHandle,WM_USER+1235,wParam,lParam) ;
  End;
End;

Function InstallHook (ApplicationHandle:HWND) :Boolean; Stdcall;
Begin
  Result := False;
  If HookHandle=0 Then
  Begin
    HookHandle := SetWindowsHookEx (WH_KEYBOARD,
      @KeyboardHookProc,
      HInstance,
      0) ;
    AppHandle := ApplicationHandle;
    Result := True;
  End;
End;

Function UninstallHook:Boolean; Stdcall;
Begin
  Result := UnhookWindowsHookEx (HookHandle) ;
  HookHandle := 0;
End;

Exports
  InstallHook,
  UninstallHook;
End.
Delphi-Quellcode:
Unit Unit1;

Interface

Uses
  Windows,
  Messages,
  SysUtils,
  Classes,
  Forms;

Type
  TForm1=Class(TForm)
    Procedure FormClose(Sender:TObject;Var Action:TCloseAction);
    Procedure Afterformcreate;
  Private
    Procedure DllMessage(Var Msg:TMessage); Message WM_USER+1235;
  End;

Function InstallHook(AppHandle:HWND):Boolean;stdcall;external'keyboardhook.dll';
Function UninstallHook:Boolean;stdcall;external'keyboardhook.dll';
Var
  Form1 :tForm1;

Implementation

{$R *.dfm}

Procedure TForm1.FormClose(Sender:TObject;Var Action:TCloseAction);
Begin
  UninstallHook;
End;

Procedure TForm1.DllMessage(Var Msg:TMessage);
Const
  // BROWSERTASTEN:
  VK_BROWSER_BACK =$A6;
  VK_BROWSER_FORWARD =$A7;
  VK_BROWSER_REFRESH =$A8;
  VK_BROWSER_STOP =$A9;
  VK_BROWSER_SEARCH =$AA;
  VK_BROWSER_FAVORITES =$AB;
  VK_BROWSER_HOME =$AC;
  //--------------------------------

  // MULTIMEDIATASTEN:
  VK_VOLUME_MUTE =$AD;
  VK_VOLUME_DOWN =$AE;
  VK_VOLUME_UP =$AF;
  VK_MEDIA_NEXT_TRACK =$B0;
  VK_MEDIA_PREV_TRACK =$B1;
  VK_MEDIA_STOP =$B2;
  VK_MEDIA_PLAY_PAUSE =$B3;
  //--------------------------------

  // ZUSATZTASTEN:
  VK_LAUNCH_MAIL =$B4;
  VK_LAUNCH_MEDIA_SELECT =$B5;
  VK_LAUNCH_APP1 =$B6;
  VK_LAUNCH_APP2 =$B7;
Begin
  If Msg.WParam In [$A6..$B7] Then
  Begin
    Sleep(100);
    Beep;
  End;
End;

Procedure TForm1.AfterFormcreate;
Begin
  InstallHook(Handle);
End;

End.
Bei manchen Anwendungen Beept es 2 mal, bei anderen Anwendungen nur einmal, was mich darauf schließen läßt, dass die Postmessage nicht funktioniert...

Und noch eine andere Frage, ich möchte nicht, dass eine andere Anwendung den Tastendruck noch verarbeitet. ist das möglich?

Gruß

BBB
  Mit Zitat antworten Zitat