W
windflower
Unregistered / Unconfirmed
GUEST, unregistred user!
我想做一个测试控件,让DBEDIT敲回车键可以跳到下一个控件,遇到了问题。
我把KeyPress事件重写如下:
procedure KeyPress(sender:TObject;Key:char);
begin
inherited KeyPress(Key);
if Key = #13 then //vk_return
begin
Perform (CM_DialogKey, VK_TAB, 0);
end;
end;
但是执行起来,敲回车时,没有反应,请问是什么地方不对?谢谢。
我把KeyPress事件重写如下:
procedure KeyPress(sender:TObject;Key:char);
begin
inherited KeyPress(Key);
if Key = #13 then //vk_return
begin
Perform (CM_DialogKey, VK_TAB, 0);
end;
end;
但是执行起来,敲回车时,没有反应,请问是什么地方不对?谢谢。