
03.03.2013, 20:03
|
 |
Sir Richard Abramson
|
|
Регистрация: 05.04.2008
Сообщения: 5,505
Версия Delphi: XE10
Репутация: выкл
|
|
Код:
Grid[0] := TDrawGrid.Create(Self);
Grid[0].Parent := Self;
Код:
procedure TForm1.DrawGrid1DrawCell(Sender: TObject; ACol, ARow: Integer;
Rect: TRect; State: TGridDrawState);
begin
DrawGrid1.Canvas.TextOut(0, 0, IntToStr(agres));
end;
|