StringGrid 如何定位到最后一行,谢谢! ( 积分: 10 )

  • 主题发起人 主题发起人 yahoo123
  • 开始时间 开始时间
Y

yahoo123

Unregistered / Unconfirmed
GUEST, unregistred user!
StringGrid 如何定位到最后一行
 
定位在最后一行的第一个cell,
procedure TForm1.BitBtn1Click(Sender:TObject);
var sel_rect:tgridrect;
begin
//移动光标到第一列。
sel_rect.Left:=1;
sel_rect.Right:=1;
sel_rect.Top:=StringGrid1.RowCount-1;
sel_rect.Bottom :=StringGrid1.RowCount-1;
StringGrid1.Selection:=sel_rect;
end;
 
用last方法应该可以
 
接受答案了.
 
后退
顶部