thats the main problem. I want to put a CheckBox inside a TStringGrid in Delphi in every cell of certain column, I'm using Delphi XE. Thanks.

link|improve this question

80% accept rate
feedback

4 Answers

up vote 14 down vote accepted

You should draw your own checkboxes, preferably using visual themes, if enabled. This is a simple sketch of how to do that:

const
  Checked: array[1..4] of boolean = (false, true, false, true);

procedure TForm4.StringGrid1DrawCell(Sender: TObject; ACol, ARow: Integer;
  Rect: TRect; State: TGridDrawState);
const
  PADDING = 4;
var
  h: HTHEME;
  s: TSize;
  r: TRect;
begin
  if (ACol = 2) and (ARow >= 1) then
  begin
    FillRect(StringGrid1.Canvas.Handle, Rect, GetStockObject(WHITE_BRUSH));
    s.cx := GetSystemMetrics(SM_CXMENUCHECK);
    s.cy := GetSystemMetrics(SM_CYMENUCHECK);
    if UseThemes then
    begin
      h := OpenThemeData(StringGrid1.Handle, 'BUTTON');
      if h <> 0 then
        try
          GetThemePartSize(h,
            StringGrid1.Canvas.Handle,
            BP_CHECKBOX,
            CBS_CHECKEDNORMAL,
            nil,
            TS_DRAW,
            s);
          r.Top := Rect.Top + (Rect.Bottom - Rect.Top - s.cy) div 2;
          r.Bottom := r.Top + s.cy;
          r.Left := Rect.Left + PADDING;
          r.Right := r.Left + s.cx;
          DrawThemeBackground(h,
            StringGrid1.Canvas.Handle,
            BP_CHECKBOX,
            IfThen(Checked[ARow], CBS_CHECKEDNORMAL, CBS_UNCHECKEDNORMAL),
            r,
            nil);
        finally
          CloseThemeData(h);
        end;
    end
    else
    begin
      r.Top := Rect.Top + (Rect.Bottom - Rect.Top - s.cy) div 2;
      r.Bottom := r.Top + s.cy;
      r.Left := Rect.Left + PADDING;
      r.Right := r.Left + s.cx;
      DrawFrameControl(StringGrid1.Canvas.Handle,
        r,
        DFC_BUTTON,
        IfThen(Checked[ARow], DFCS_CHECKED, DFCS_BUTTONCHECK));
    end;
    r := Classes.Rect(r.Right + PADDING, Rect.Top, Rect.Right, Rect.Bottom);
    DrawText(StringGrid1.Canvas.Handle,
      StringGrid1.Cells[ACol, ARow],
      length(StringGrid1.Cells[ACol, ARow]),
      r,
      DT_SINGLELINE or DT_VCENTER or DT_LEFT or DT_END_ELLIPSIS);
  end;
end;

Of course, in a real scenario, the Checked array is not a constant, and you might wish to save the s metrics and h theme handle between cell painting events. But the principle is here.

What is missing here is a function to alter the state of the checkboxes. You will probably want to toggle the state in an OnClick handler. If you are really serious, you'll also wish to respond to the motion of the mouse, and display the mouse hover effect on the checkboxes if themes are available.

link|improve this answer
1  
Andreas would you mind if I borrowed that code and put it into the JVCL String Grid? It would be a nice addition. – Warren P Mar 15 '11 at 2:39
+1 @Andreas, do you always have to show off? :-) Nice. – Ken White Mar 15 '11 at 2:41
@Warren P: Feel free to use the code as you wish. @Ken: Sorry, couldn't resist! – Andreas Rejbrand Mar 15 '11 at 12:03
thanks, it works, and it will be good to have this on the JVCL Grid – alexzm1 Mar 16 '11 at 0:16
@AndreasRejbrand if we want to manage out own onclick, does it mean we want to repeat this procedure, or what? how can we check the status of the drawn theme? give me a hint please. – Zeina Mar 20 at 11:11
feedback

Don't try to place an actual TCheckBox control inside a TStringGrid. Use the grid's OnDrawCell event with the Win32 API DrawFrameControl() function instead, to draw an image of a CheckBox control inside each cell as needed. You can use the OnClick/OnMouse... events with the grid's Objects[][] property to keep track of each cell's checked state as needed. I find this is a lot easier to manage, since TStringGrid was not designed to host real controls.

link|improve this answer
feedback

delphi.about.com has an article with code about this very topic.

link|improve this answer
feedback

I use a virtual grid called ExGridView by Roman Mochalov, that supports checkboxes, and I also know that the TMS AdvStringGrid has one. (ExGridView is free, TMS is commercial).

Update: I also enclose here my modified version of GridView, ported for Unicode etc, named TExGridView, instead of TGridView, and with a demo of checkboxes (see Demo2 included). It is here.

enter image description here

link|improve this answer
How could i add the CheckBox on a GridView from the ExGridView of Roman Mochalov??? – alexzm1 Mar 15 '11 at 23:07
See my update with demo. – Warren P Mar 30 '11 at 0:33
@WarrenP I work with the TMS AdvStringGrid, but does it support the Grayed state of its checkboxes (I don't think so)? how can i manage my own gray checkbox? can i color it by some way? – Zeina Mar 20 at 10:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.