FNCGrid cell border width

I've just upgraded to FNC v4 and the cell borders now have a thickness of 2 (appears to be 1 from each cell). I've tried copying the properties across from an older version but can't get the thickness back to 1. This is for both WebCore and VCL using Delphi 10.4. The thick borders look really awful - how do I get them thin again?

Thanks, Bob

Hi Robert,

I have the same problem. I mostly got it working by changing the Sides properties.

Best regards,
Fons

Grid.Appearance.NormalLayout.Sides:= [gsRight, gsBottom];
Grid.Appearance.BandLayout.Sides:= [gsRight, gsBottom];
Grid.Appearance.FocusedLayout.Sides:= [gsRight, gsBottom];
Grid.Appearance.FixedLayout.Sides:= [gsRight, gsBottom];
Grid.Appearance.FixedSelectedLayout.Sides:= [gsRight, gsBottom];
Grid.Appearance.GroupLayout.Sides:= [gsRight, gsBottom];
Grid.Appearance.SelectedLayout.Sides:= [gsRight, gsBottom];
Grid.Appearance.SummaryLayout.Sides:= [];

Thanks Fons - that's a decent workaround for now - I can live with the gaps in the borders while developing. Hopefully TMS give us a solution!

Cheers, Bob

We've reverted some changes that we made tot the look, so the initial TMSFNCGrid should have the borders as in the previous version.

This will be available in the next update of the TMS FNC UI Pack.

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.