OnMouseDown is difficult; you can get the coordinates via the X and Y parameters to the event, and convert to a row and column by typecasting the TDBGrid to it's ancestor TCustomGrid:
var
Coord: TGridCoord;
begin
Coord := TCustomGrid(DBGrid1).MouseCoord(X, Y);
if Coord.X = 0 then
// We're in the "gutter"
end;
However, it seems that OnMouseDown only fires for TDBGrid when the header row is clicked.
OnCellClick seems like a possible alternative, but it only fires on actual cells (excluding the gutter and header row), so it won't work. Neither will OnColEnter, as it doesn't fire when you'd want it to either.
It looks like your best option would be to use the standard Ctrl and Shift modifiers with the left mouse button to do your multiple selections, like every other app in Windows that does multi-select.
OnMouseDown; you can get the coordinates, but then you have to track down the column under those coordinates and see if it's the right one. However, theTDBGrid.OnCellClickshould work instead. You can also look atOnColEner. – Ken White Dec 6 '11 at 21:04Ctrl+ClickandShift+Click- just like every other app in Windows does. :) – Ken White Dec 6 '11 at 21:31