Page 1 of 1

Conditionally Display Image

Posted: Mon Feb 12, 2007 4:28 pm
by sschroed
Hi All,

I have an image I want to display in a footer band when a certain boolean value is true. I've tried setting a condition but I guess I'm not doing it correctly. Any suggestions?

Conditionally Display Image

Posted: Mon Feb 12, 2007 5:52 pm
by Vital
Add to BeforePrintEvent following code:

Code: Select all

if (condition)Image1.Enabled = false;
else Image1.Enabled = true;
Thank you.