We have a few Firebird DB fields that are greater than 255 characters (all
varChars). In grids these show as memo fields and are not easily
accessible. Is there any way to change the default behaviour to make these
values visible?
I guess your problem is only in grids where you normally see '(MEMO)' or something instead of the full contents of the field. In which case the easiest thing is to write an OnGetText event for the field component and put something like
Text := copy(MyTableNOTES.AsString, 1, 30);
Kit Jackson _______________________________________________ Delphi mailing list [EMAIL PROTECTED] http://ns3.123.co.nz/mailman/listinfo/delphi
