How do I toggle the rows of a report with custom Crystal Reports and C # winforms colors?

4

In the report I'm doing, I've already been able to toggle the colors by doing the following: Menu Access: Crystal Reports - Report - Section Expert Select the section Details and click on the Color Click on the formula x-2 button, the formula editor will open

Put the following code:

if (RecordNumber mod 2) = 0 then crNoColor else crSilver

The problem is that the color gray (% w / o%) is too dark, I need to get a lighter gray, which does not run too far from white.

I wonder if there is any way to customize colors, and name them and then use these names in Crystal Reports? Or is there a color list with their names in crSilver ?

    
asked by anonymous 22.12.2016 / 18:26

1 answer

6

Has the function Color (red, green, blue)

You can have an aid in a normal color edit, "plus" button edit the color as you want and use the red, green and blue parameters in the function mentioned.

obs: I do zebra with crSilver but I do not think it's too dark

    
22.12.2016 / 18:36