I have a form with 2 CheckBoxes (1 is for Holding CTRL - 1 is for Holding ALT) Both CheckBoxes are disabled so the KeyDown Event of the form works properly. There is also a TTimer that synchronizes every 10ms if the ALT/CTRL key is pressed.
That's my timer:
procedure TForm1.Timer1Timer(Sender: TObject);
begin
CheckBox1.Checked := ALTDOWN; // ALTDOWN IS GLOBAL
CheckBox2.Checked := CTRLDOWN; // CTRLDOWN IS GLOBAL
end;
That's my KeyDown Event:
procedure TForm1.FormKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if Key = VK_MENU then begin
ALTDOWN := TRUE;
exit;
end;
if Key = VK_CONTROL then begin
CTRLDOWN := TRUE;
exit;
end;
end;
That's my KeyUP Event:
procedure TForm1.FormKeyUp(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if Key = VK_MENU then begin
ALTDOWN := FALSE;
exit;
end;
if Key = VK_CONTROL then begin
CTRLDOWN := FALSE;
exit;
end;
end;
This works without any problems with the CTRL Key. But the ALT Key get's stuck sometimes or does not even show up at all. This happens when I press ONLY the ALT Key (without any other keys in combination) Why is that and how can I fix this?
Thanks for your help.