C
cowbird
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.Edit1KeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if key=vk_tab then
showmessage('ok');
end;
Tab键值是9,但运行后不显示OK,为什么
Shift: TShiftState);
begin
if key=vk_tab then
showmessage('ok');
end;
Tab键值是9,但运行后不显示OK,为什么