delphi StringGrid中回车换行


本文整理自网络,侵删。

 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 firedac数据库引擎连接mysql

Delphi regularexpressions 正则表达式如何忽略大小写

Delphi hextoint32

Delphi从excel读取数据存入数据库demo

Delphi鼠标移过放大镜效果

Delphi简单的字符串加密解密函数

Delphi 获取memo的行数与列数

Delphi edit中只能输入数字并且只能输入一个小数点

Delphi 写3389自动登录器

Delphi getwindowtext - 获取窗口标题

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...