截获Tab键VK_tab_OnKeyUp

功能说明: 
procedure TForm1.Edit1KeyUp(Sender: TObject;var Key: Word;
Shift: TShiftState);
begin
    if Key= VK_tab then Showmessage('VK_TAB');
end;




原文地址:https://www.cnblogs.com/xe2011/p/2518898.html