Sounds to me like this would be totally contained in conditional formatting in the report.
In your report editor, select the field to be italicized, and do a right click on it. Go to "format" and select the "font" tab. On the line for Font Style, select the box on the right hand side that has the "x+2" icon displayed on it. This will bring up your form editor.
In your editor, use code similar to this:
if field=1 then crItalic else crRegular
Whenever your report runs, it will check the field value (which doesn't even need to be displayed on the report) and set you style based upon the value.
|