I want to change background color ( not font ) of a cell in string grid in delphi .

Just one cell not a row or o column .

Can i ? if its possible please give me a code .

Thank you for your helps .


RRUZ : your procedure is correct and works aloan but in my procedure dosent works . its my procedure :

x is a global array of integer

procedure TF_avalie_salon.StringGrid1DrawCell(Sender: TObject; ACol,
    ARow: Integer; Rect: TRect; State: TGridDrawState);
    var   S: string;
begin
    S := StringGrid1.Cells[ACol, ARow];
    StringGrid1.Canvas.FillRect(Rect);
    SetTextAlign(StringGrid1.Canvas.Handle, TA_CENTER);
    StringGrid1.Canvas.TextRect(Rect,Rect.Left + (Rect.Right - Rect.Left) div 2, Rect.Top + 2, S);
    if (ARow<>0 )AND(acol<>0)AND(gridclick=true) then
    begin
        try
          gridclick:=false;
          x[acol+((strtoint(Edit_hafte.Text)-1)*7),arow]:=strtoint(StringGrid1.Cells[ACol, ARow]);
        except
          x[acol+((strtoint(Edit_hafte.Text)-1)*7),arow]:=0;
          StringGrid1.Cells[acol,arow]:='0';
          with TStringGrid(Sender) do
          begin
            Canvas.Brush.Color := clGreen;
            Canvas.FillRect(Rect);
            Canvas.TextOut(Rect.Left+2,Rect.Top+2,Cells[ACol, ARow]);
          end;
        end;
    end;
end;

when i use Canvas.Brush.Color with below code , Canvas.Brush.Color dosent work . if i inactive below code i can change the cells color . but i need both .

    S := StringGrid1.Cells[ACol, ARow];
    StringGrid1.Canvas.FillRect(Rect);
    SetTextAlign(StringGrid1.Canvas.Handle, TA_CENTER);
    StringGrid1.Canvas.TextRect(Rect,Rect.Left + (Rect.Right - Rect.Left) div 2, Rect.Top + 2, S);
link|improve this question

The code which makes the cell Green is only executed in case of an exception and that is almost only possible in the StrToInt-function. Is that intentional? – Andreas Jul 15 '11 at 7:15
yeah andreas ,,, i want to change a cell color when it makes a problem . – Arash Jul 15 '11 at 8:26
admin or modirator : can i ask this question again ( for completing and clearing ) – Arash Jul 15 '11 at 9:47
This is duplicated, there are many questions reggarding customdraw here in stackoverflow. Painting a cell or a text works the same way. You just need to use the correct property. – Rafael Colucci Jul 15 '11 at 13:17
feedback

2 Answers

The Rafael link contains all which you need, using the OnDrawCell event is the way to paint the cells of a StrignGrid. check this sample which paint only the background of an specific cell.

procedure TForm1.StringGrid1DrawCell(Sender: TObject; ACol, ARow: Integer;  Rect: TRect; State: TGridDrawState);
begin
  if (ACol = 3) and (ARow = 2) then
    with TStringGrid(Sender) do
    begin
      //paint the background Green
      Canvas.Brush.Color := clGreen;
      Canvas.FillRect(Rect);
      Canvas.TextOut(Rect.Left+2,Rect.Top+2,Cells[ACol, ARow]);
    end;
end;
link|improve this answer
1  
thank you ,,, it works aloan but not in my procedure . please check my procedure in the body of my question . thank you . – Arash Jul 15 '11 at 1:08
What do you mean which not work? are you tried setting a brekpoint in the line where your set the background color (Canvas.Brush.Color := clGreen;) to check if the application reach that point? – RRUZ Jul 15 '11 at 1:14
2  
@Downvoter, what is your problem ? copypasting? – RRUZ Jul 15 '11 at 2:14
RUUZ : yeah i make a breakpoint , its reachable . i think i cant use it because your code is correct and its from application . i don't know what to do . – Arash Jul 15 '11 at 8:31
its not about my think or your think . its a simple code in less than 15 lines that i said not works together but both of them was works right alone . now if u can help its so nice and i will so Grateful from you but other comments that not help are spam . – Arash Jul 15 '11 at 22:35
feedback

Yes, you can. Check this out.

link|improve this answer
no no no its for text in cell . i want to change a cell background color . – Arash Jul 15 '11 at 0:34
Its a sample. Just use the brush color and you are good. – Rafael Colucci Jul 15 '11 at 13:18
Also, the link I posted paints the cell, not the text as you said. Read it more carefully. – Rafael Colucci Jul 15 '11 at 14:07
feedback

Your Answer

 
or
required, but never shown

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