Версия для печати темы
Нажмите сюда для просмотра этой темы в оригинальном формате
Форум программистов > Delphi: Базы данных и репортинг > Мемо в DBGrid


Автор: Poseidon 18.5.2005, 02:06
Код
{ 
A common problem when working with DBGrid is, that this component can't display TMemo fields, 
multiline columns, Graphics... 
There are a few good freeware components around to solve this problem. 
The best one is definitly "DBGRIDPLUS", which comes with full sources. 
However, this component does not allow to edit the text in memo fields. 
The delphi fans out there who bought a delphi version that comes with the VCL sources can 
fix this problem: 
Open dbgrids.pas and make the following changes: 
(To have memo editing in your app you must just add the modifyed version of dbgrids.pas to your uses clause) 
} 

function TCustomDBGrid.GetEditLimit: Integer; 
begin 
  Result := 0; 
  if Assigned(SelectedField) and (SelectedField.DataType in [ftString, ftWideString, ftMemo]) then <-- Add 
    Result := SelectedField.Size; 
end; 

function TCustomDBGrid.GetEditText(ACol, ARow: Longint): string; 
begin 
  Result := ''; 
  if FDatalink.Active then 
  with Columns[RawToDataColumn(ACol)] do 
    if Assigned(Field) then 
      Result := Field.AsString; <-- Change this. 
  FEditText := Result; 
end; 

{ 
Just compare theese edited functions with the original ones, and you will know what to change. 
To get multiline cell support (not in memo fields!) for DBGridPlus, send me an email and i can send you the changed DBGridPlus.pas file. 
} 

Powered by Invision Power Board (http://www.invisionboard.com)
© Invision Power Services (http://www.invisionpower.com)