Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2003.02.24;
Скачать: CL | DM;

Вниз

Поставить на HOOK   Найти похожие ветки 

 
SPIRIT ©   (2002-12-25 01:41) [0]

вот код программки я отлавливаю код дополнительных кнопок "Volume Down","Volume UP","Mute" как мне можно эти действия положить на HOOK.

unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;

type
TForm1 = class(TForm)
Label1: TLabel;
Label2: TLabel;
private
{ Private declarations }
public
procedure WMKEYDOWN(var msg: TMessage); message WM_KEYDOWN;
{ Public declarations }
end;

var
Form1: TForm1;
implementation

{$R *.dfm}
procedure TForm1.WMKEYDOWN(var msg: TMessage);
begin
if msg.LParam = 19791873 then
Label1.Caption := "Volume Down";
if msg.LParam = 18874369 then
Label1.Caption := "MUTE";
if msg.LParam = 19922945 then
Label1.Caption := "Volume Up";
end;
end;

end.


 
Song ©   (2002-12-25 08:21) [1]

WH_GETMESSAGE+SetWindowsHookEx()
Пример хука в статье и FAQ.



Страницы: 1 вся ветка

Текущий архив: 2003.02.24;
Скачать: CL | DM;

Наверх




Память: 0.46 MB
Время: 0.012 c
4-76218
de
2003-01-10 17:04
2003.02.24
Как переместить каталог?


8-76036
Luc
2002-11-10 23:23
2003.02.24
Градиент на BMP


9-75738
skiph
2002-09-10 11:47
2003.02.24
Проблема с симплекс-методом


1-75972
zenov
2003-02-12 15:24
2003.02.24
как сделать часы


14-76157
Дмитрий К.К.
2003-02-07 19:29
2003.02.24
Таблицы в HTML