How to set a memo be printed or not by code?
From the Fast Report Designer, I can set a memo be printed or not, but I cannot find a method to set the memo can be printed or not by the code. And another problem is as follows: When I dynamically inserted some memos to the report during the runtime, how can I set the memos' border style, for example, the border color, the left boder, the right border and so on. By the way, the develop tools is Microsoft VC++6.0. Thks a lot.
Comments
in obp event of band containing memo
if condition then memoname.printable := true else memoname.printable := false
setting the memoviews properties delphi typically
memoname.frame.typ :=ftbottom + ftright;
memoname.frame.color :=clred;