procedure TForm1.FormKeyUp(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if (Key>=65) and (Key<=90) then
Keys[Key]:=False;
//a partir de aqui no necesitas este codigo, solo lo puse para la prueba
if not (Keys[Ord('A')]) then
label1.Caption:='A suelta';
if not (Keys[Ord('B')]) then
label2.Caption:='B suelta'
end;