Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
procedure TForm1.FormKeyUp(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if (key = vk_tab) then
if ssShift in shift then
label1.caption := 'Shift + Tab'
else
label1.caption := 'Tab';
end;