本文整理自网络,侵删。
if key = vk_return then//设置回车代替tab键
with a do
begin
if Col=(ColCount-FixedCols) then
begin
if Row<(RowCount-FixedRows) then
begin
Row := Row+1;
Col := 1;
end;
if Row=RowCount-FixedRows then
begin
RowCount:=RowCount+1;
Row := Row+1;
Col := 1;
end;
end
else
Col:=Col+1;
end;
相关阅读 >>
Delphi 如何在webservice中获取客户端的ip地址
Delphi tstringlist 自带 split 用法
Delphi 在xp/2k 下实现 win+ctrl+del 等键的屏蔽的方法
Delphi trestclient + trestrequest + trestresponse
更多相关阅读请进入《Delphi》频道 >>