problems with stretched field
Hi
i have fields in masters data, when i set streched property contents of first field are writing on content fields down ,
it work good only if last field on the bottom master data is stretched
What i am doing wrong?
Best regards
jacek
i have fields in masters data, when i set streched property contents of first field are writing on content fields down ,
it work good only if last field on the bottom master data is stretched
What i am doing wrong?
Best regards
jacek
Comments
you cannot place stretched memos one above the other in a band!
But you can attach a child band abd set memos to stretched in that band.
regards
How would I suppress the child band on a per record basis? I don't want it to pad out my report when it contains no data.
NB: I populate my report using OnGetValue, if that has a bearing on the above.
Thanks
David
regards
obp? = OnBeforePrint?
I use OnGetValue for all my data, can this still be used in OnBeforePrint? e.g.
if ( [extranotes] ??? .IsEmpty() )
bandChild.Visible = false;
When fr encounters a variable it checks to see what it must do
see notes in docs on programming.
if <condition exprssion> true then child1.visible := false else child1,visible := true;
or in obp event of child
visible := [expression that equates to true or false];
regards