码迷,mamicode.com
首页 > 移动开发 > 详细

在 DBGrid 中如何让回车变为光标右移动

时间:2020-05-16 17:19:05      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:代码   ted   nbsp   res   control   grid   active   移动   ESS   

在Form.OnKeyPress事件中写如下代码:

  if Key = #13 then 
  if ActiveControl = DBGrid1 then begin 
    TDBGrid(ActiveControl).SelectedIndex := TDBGrid(ActiveControl).SelectedIndex + 1; 
    Key := #0; 
end; 

有2点需要注意:
  1.当光标达到DBGird最右列的时候,再按回车,光标还会停留在原地。
  2.Key := #0

在 DBGrid 中如何让回车变为光标右移动

标签:代码   ted   nbsp   res   control   grid   active   移动   ESS   

原文地址:https://www.cnblogs.com/jijm123/p/12900815.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!