
20.09.2011, 08:50
|
Так проходящий
|
|
Регистрация: 18.07.2011
Сообщения: 805
Версия Delphi: 7Lite
Репутация: 6063
|
|
PHP код:
procedure TForm1.DBGrid1DrawDataCell(Sender: TObject; const Rect: TRect;
Field: TField; State: TGridDrawState);
begin
if not Field.Name = 'Цвет' then Exit
Brush.Color := Field.AsInteger
...
end;
наверно как-то так
|