View Issue Details

IDProjectCategoryView StatusLast Update
0003571JEDI VCL00 JVCL Componentspublic2006-03-10 03:12
ReporterRaidAssigned ToAHUser 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.10 
Target VersionFixed in Version3.30 
Summary0003571: TJvPageListTreeView - ShowLines always true in Delphi 7
DescriptionDue to the not saving in the DFM if it's default, Delphi never loads the ShowLines property because in the source it shows

{$IFDEF VCL}
property ShowLines default False;
{$ENDIF VCL}

But it actually creates as True. Basically, the fix is put this in JvPageListView.pas - TJvCustomPageListTreeView.Create:

{$IFDEF VCL}
ShowLines := False;
{$ENDIF}
TagsNo tags attached.

Activities

AHUser

2006-03-10 03:12

developer   ~0008647

Fixed in CVS.

Issue History

Date Modified Username Field Change
2006-03-10 02:50 Raid New Issue
2006-03-10 03:12 AHUser Status new => resolved
2006-03-10 03:12 AHUser Resolution open => fixed
2006-03-10 03:12 AHUser Assigned To => AHUser
2006-03-10 03:12 AHUser Note Added: 0008647