L lndzh Unregistered / Unconfirmed GUEST, unregistred user! 2001-05-12 #1 Stringgrid 的selection属性是只读的,能否用程序选择区域。
S sundart Unregistered / Unconfirmed GUEST, unregistred user! 2001-05-30 #2 var myRect: TGridRect; begin myRect.Left := 3; myRect.Top := 1; myRect.Right := 2; myRect.Bottom := 4; DrawGrid1.Selection := myRect;
var myRect: TGridRect; begin myRect.Left := 3; myRect.Top := 1; myRect.Right := 2; myRect.Bottom := 4; DrawGrid1.Selection := myRect;
M menxin Unregistered / Unconfirmed GUEST, unregistred user! 2001-05-30 #3 对于单格可以这样 with StringGrid1 do begin row:=2; col:=2; end; 这橛可以选中2行2列的那个格
J Jamw Unregistered / Unconfirmed GUEST, unregistred user! 2001-06-05 #5 stringgrid.cells[x,y]=''(字符串型的)
半 半桶水 Unregistered / Unconfirmed GUEST, unregistred user! 2001-06-05 #6 >>Stringgrid 的selection属性是只读的,能否用程序选择区域。 你有没有试过sundart给的代码?