Текущий архив: 2002.09.05;
Скачать: CL | DM;
Вниз
господа возможно ли перехватить ножатие на del Найти похожие ветки
← →
Alexsandri © (2002-08-11 12:12) [0]и запретить удаление файлов
← →
Anatoly Podgoretsky © (2002-08-11 14:08) [1]ДА
← →
Shrek © (2002-08-11 16:21) [2]Please!
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
TForm1 = class(TForm)
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
procedure WMHotkey( Var msg: TWMHotkey ); message WM_HOTKEY;
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
Procedure TForm1.WMHotkey(Var msg: TWMHotkey);
var h : hWnd;
Begin
If msg.hotkey = 1 Then Begin
If not IsIconic(Application.Handle) Then
begin
ShowMessage("Ну-ну");
end;
BringToFront;
End;
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
If not RegisterHotkey (Handle, 1, 0, VK_DELETE) Then
ShowMessage("Error hootkey");
end;
end.
Страницы: 1 вся ветка
Текущий архив: 2002.09.05;
Скачать: CL | DM;
Память: 0.47 MB
Время: 0.013 c