Delphi 网格可见项
大家好,
我正在使用 Delphi 7。我遇到了网格问题。
我的网格有 100 行,之后我会添加更多行。例如,我选择的项目是 1 号。网格一次在屏幕上显示 20 个项目。我将网格向下滚动。我到达了最后一个。这里网格的 Itemindex= 10;请注意,所选项目未显示在可见窗口上。当我添加该项目时,网格刷新并移动以显示第 10 个项目。
我不想这样做。
我的要求是添加新行时,屏幕应保持不变,如上次所示。
期待快速回复。
感谢和问候,
VIJESH V.NAIR 系统分析师。 印度德里。
HI all,
I am working with Delphi 7. I am facing a problem with Grid.
My Grid having 100 rows, I am appending some more after that. For example, I am selected item is on 1oth. The grid shows 20 items on screen at a time. I scrolled the grid to downward. I reached last one. Here grid's Itemindex= 10; Please note the selected item is not showing on the visible window. When I adds the item, the grid refresh and moving to show 10th item.
I don't want to do this.
My requirement is When Adding new rows, Screen should remain same, as shown last time.
Expecting quick reply.
Thanks and Regards,
VIJESH V.NAIR
System Analyst.
Delhi, India.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在添加项目之前,请为表中与 dbgrid 对应的当前行添加书签。
添加项目后转到您的书签
使用 TBookmark 的示例:
(您可以将 clientdataset1 替换为您的 tableName,如 table1)
Before adding an item bookmark the current row of your table that correspond to dbgrid.
Afer adding an item goto your bookmark
a sample for working with TBookmark:
(you can replace clientdataset1 with your tableName like table1)