http://bbs.csdn.net/topics/30363697

方法一、

在你的单元文件中
type
  TForm1 = class(TForm)
上面加入
type 
  TCGrid= class ( TCustomGrid)
end;
然后再form的onshow事件中:
  TCGrid(self.DBGrid1).scrollbars:=ssNone;
就可以了。


方法二、
ShowScrollBar(DBGrid.Handle, SB_BOTH ,false);
ShowScrollBar(ListView1.Handle, SB_VERT, False); //隐藏纵向滚动条
ShowScrollBar(ListView1.Handle, SB_HORZ, False); //隐藏横向滚动条