View Issue Details

IDProjectCategoryView StatusLast Update
0003740JEDI VCL00 JVCL Componentspublic2006-06-09 05:33
ReporternagoyadamAssigned Toobones 
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
Product VersionDaily / GIT 
Target VersionFixed in Version3.30 
Summary0003740: JVDBGrid can't show memo fields in D2006
DescriptionIn D2006 the contents of memo fields are not shown in JVDBGrid.
Additional InformationTo solve the problem I have chenged the following code in JVDBGrid.pas
      
         if (Field is TStringField) or ((Field is TMemoField)and FShowMemos)

into

      if (Field is TStringField) or ((Field is TMemoField)
            {$IFDEF VER180}
            or (Field is TWideMemoField)
            {$ENDIF}
          and FShowMemos)
TagsNo tags attached.

Activities

obones

2006-06-09 05:33

administrator   ~0009537

This is now in SVN, using $IFDEF COMPILER10_UP as it is the way it should be done.

Issue History

Date Modified Username Field Change
2006-06-04 23:42 nagoyadam New Issue
2006-06-09 05:33 obones Status new => resolved
2006-06-09 05:33 obones Resolution open => fixed
2006-06-09 05:33 obones Assigned To => obones
2006-06-09 05:33 obones Note Added: 0009537