![]() |
Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Key press processing
Set form's KeyPreview property to True and do something in OnKeyPress event:
procedure TForm1.FormKeyPress(Sender: TObject; var Key: Char);
begin
if Key='a' then Label1.Caption:='OK';
end;
-
More for developers