> From: Alex Kouznetsov <[EMAIL PROTECTED]>
> Is there any way to intercept F1 key apart setting Windows hooks ?
>
write a handler for the OnKeyDown event
procedure (Sender: TObject; var Key: Word; Shift: TShiftState);
and in here test
if Key = VK_F1 then //whatever
ns
---------------------------------------------------------------------------
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED]
with body of "unsubscribe delphi"