Tip #25 - Lines show through instead of being covered by other printed objects
CategoryCode Based - General
QuestionI have printed lines on a page and then other objects over the top of them but the lines are showing through, which I don't want. Is there a way to solve this problem?
SolutionBy default, Rave buffers lines until the end of each page so that it can optimize the output for faster printing. Turn this option off if you need to have lines printed before other objects on a page. You can do this using the NoBufferLine property:
Delphi Example:
with Sender as TBaseReport do begin
NoBufferLine := true;
end;
C++Builder Example:
TBaseReport* bp = dynamic_cast<TBaseReport*>(Sender);
bp->NoBufferLine = true;
Tip created by Eldon Lewis - Email : eldon@nevrona.com - Web : http://www.nevrona.com
Date Created: 4/20/2001 10:03:54 AM - Date Last Updated: 5/6/2001 10:53:30 PM |