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
Conditionally Display Image
Add to BeforePrintEvent following code:
Thank you.
Code: Select all
if (condition)Image1.Enabled = false;
else Image1.Enabled = true;