fcs
fcs
About
- Username
 - fcs
 - Joined
 - Visits
 - 0
 - Last Active
 - Roles
 - Members
 
Comments
- 
                Hello, Try to insert this paragraph on a new child band and set AllowSplit to false (the default value). Michal MotoX wrote: » I have a large paragraph that is printed at the end of a report. If it will fit on the current page, I want it…
 - 
                Hello, Try to use: {$H+} procedure TForm1.FReport123_GetValue(const VarName: string; var Value: Variant); begin if VarName='StartDate' then Value:=startdate_dtp.Text; if VarName='EndDate' then Value:=enddate_dtp.Text; end; {H-} The H…
 - 
                Hello, You can put [Address Line 1] and [Address Line 2] and [Address Line 3] into one Memo and set the StretchMode = smMaxHeight. The other way is use for [Address Line 2] and [Address Line 3] code like this (my Z_Uwagi = yours AddressLine2) p…
 - 
                Hello, You can try to use variables in FR. Store parameters in them and call a report, but I don't know if these variables may be used in SQL queries inside the report. You can try to use the TfrxUserDataSet, define fields and store parameter…
 - 
                Hello, You can built input forms inside FR and define filters on them. Regards Michal
 - 
                Hello, Try something like this inside of report code and set double pass report: procedure Stopka_Firma_plOnAfterCalcHeight(Sender: TfrxComponent); begin   // ShowMessage(FloatToStr(Engine.freespace)+#13+FloatToStr(Stopka_Firma_pl.Height) ); …
 - 
                gpi wrote: » Use TfrxMemoView.CalcHeight to determine and set TfrxShapeView height Something like this: procedure Shape1OnBeforePrint(Sender: TfrxComponent); begin Shape1.height:=Memo5.Height; end; I tested this in FastReport Demo …
 - 
                gpi wrote: » gpi wrote: » Is it a possibility to draw rounded frame of memos ? No. Try to place rounded rectangle on TfrxMemoView But the rounded rectangle can't be stretched. If the contents of memo grows the rounded rectangle has…