Keep the scrollbars hidden in a Delphi dbgrid (even on resize)
问题 For our dbgrid we want the scrollbars to be constantly hidden. Since TDBGrid doesn't have a 'scrollbars' property, we use: ShowScrollBar(DBGrid1.Handle, SB_VERT, False); ShowScrollBar(DBGrid1.Handle, SB_HORZ, False); However when we resize the window (and the panel containing the dbgrid), for a second the scrollbars appear and becom hidden again only after recalling the two above methods. A solution is to call these methods in DrawColumnCell, but this causes flickering of the dbgrid, even