Re: Criteria formatting
From: Marshall Barton (marshbarton_at_wowway.com)
Date: 04/28/04
- Next message: Tom: "Re: 2 column report"
- Previous message: Marshall Barton: "Re: subreport and null value problem"
- In reply to: Max: "Criteria formatting"
- Next in thread: Robin Ball: "Re: Criteria formatting"
- Messages sorted by: [ date ] [ thread ]
Date: Wed, 28 Apr 2004 13:45:46 -0500
Max wrote:
>I have a report that shows outstanding issues. There is a
>field that calculates the due days of an item. I would
>like to italicize the whole record/line if the days are
>positive. (+) means the item is outstanding (-) means
>there is still time left.
You need to set the property for each control in the
section.
Dim bolLate As Boolean
bolLate = (Me.thelatefield > 0)
Me.controlA.FontItalic = bolLate
Me.controlB.FontItalic = bolLate
. . .
Me.controlN.FontItalic = bolLate
-- Marsh MVP [MS Access]
- Next message: Tom: "Re: 2 column report"
- Previous message: Marshall Barton: "Re: subreport and null value problem"
- In reply to: Max: "Criteria formatting"
- Next in thread: Robin Ball: "Re: Criteria formatting"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|