Why do frames print? [message #89613] |
Thu, 03 June 2004 11:43 |
Jon
Messages: 483 Registered: May 2001
|
Senior Member |
|
|
Hey guys -
Probably a simple answer here. Is there a way to not have repeating frames print in a report? I looked in the property palette but didnt see a visible property. Any suggestions? Oh, and how do you get the page setup to remember values? Every time I boot up Reports(6i) the margins revert to their defaults. I need them to stay at 0!
Thanks in advance!
jon
|
|
|
Re: Why do frames print? [message #89628 is a reply to message #89613] |
Tue, 08 June 2004 00:48 |
Himanshu
Messages: 457 Registered: December 2001
|
Senior Member |
|
|
Hi,
Simply write a Format trigger on your FRAMES and based on whatever condition just make them visible or invisible i.e.
If Condition 1 =1 Then
return(TRUE)
Else
return(false);
End If;
Regards
Himanshu
|
|
|