DBAdvCardList

I've tried displaying a memo field in a cardlist however, all that is displayed is "(memo)"

Is there an example that shows how to display a memo field in a DBAdvCardList?

Thanks,
Eric

Please see the TDBAdvCardList demo. This shows the Notes memo field.
By default, the memofield displays (MEMO) but you can make the memo text dislay by using the persistent field and implement the OnGetText event as:


procedure TForm1.Table2NotesGetText(Sender: TField; var Text: string;
  DisplayText: Boolean);
begin
  Text := (Sender as TField).AsString;
end;