Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Conditional Page Footer

Status
Not open for further replies.

sasa888

Programmer
Oct 15, 2001
131
0
0
US
Hi all, is it possible to format the text box within page footer based on the detail section? (I have 20 detail sections). Please help!
 
Yes, probably.

Why not take the time to state specifically what you want?

You can create formulas in the details section to supply values which could then be used for formatting.

example:

details formula
whileprintingrecords;
booleanvar BoldMe;
if {table.value} > 1000 then
BoldMe := true

Then you can refer to the variable in the formula for a font as in:

whileprintingrecords;
booleanvar BoldMe;
if BoldME = true then
crbold

Pretty generic answer to a vague question.

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top