
gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
here is a sample ive only shown the first 2 memos in the band but youll get the idea i'm sure make sure the memos are created in order left to right within the band; var oldleft:double; procedure Memo8OnAfterData(Sender: TfrxComponent); begin …
-
put the code in the onafterprint event of the memo using the totalpages variable put the delphi code in the onenddoc event of the tfrx report component' works for me.
-
Can you work with word wrapping in the memos if so set up the stretching props of bands and memos to maxheight and verical alignment to center.
-
Is this a mistype After upgrading from 5.1.8 to 5.1.0 first problem is resolved. Now it can export images but RichView isn't working! 5.1.0 would be backwards these are peer forums use support ticket system
-
try designing the chart using 2 series and set which series you want active. chart1.Series[0].Active := false; chart1.Series[1].Active := true; see the usermanual on charts
-
expression must ebal to true ore false [iff ((> 2) and ( <5)), 'TEXT1', 'Text4'] try to use frs builtin expression builder to get correct syntax when building expressions.
-
create a variable in the reports variable list set it to 0 assuming you are using total pages in a memo in the report, in that memos oap event write code set('mypages',()); in delphi write code for the report components enddoc event procedure…
-
this will depend upon wether or not you are printing from the preview window or handling from code without previewing.
-
these are peer forums use the support ticket system instead.
-
it is too late to modify the output of the report memo;s properties.
-
what version of fr5 are you using demo or xe version?
-
Leo you will probably need to rethink the banding you are using grouping will not let you work this way. You are probably going to have to control the movement in the datasets on your own. more like a page of 2 labels i need info on your data, ma…
-
make sure that you have not inadvertently set any designer restrictions.
-
try this procedure ReportSummary1OnBeforePrint(Sender: TfrxComponent); begin if engine.freespace > reportsummary1.height then begin Engine.CurY := Engine.PageHeight -reportsummary1.height -pagefooter1.Height - 1; end; end; OR IF STRE…
-
fr5 usermanual chapter on script typical code for the obp event of the master data band ie C++Script: if (Copy(, 1, 1) == "A") MasterData1.Visible = true; else MasterData1.Visible = false;
-
in the oad event of the group header set a variable to the condition value. in tht subreport obp event of masterdata set the visible property ie masterdata2.visible := dataset."fieldname" := variable name;
-
Try this Use a subreport in an unattached child band for the second master write code to display the child in the obp event of the group footer. engine.showband(childbandname)
-
first error masterdata1.rowcount := ds.recordcount; should be masterdata1.rowcount := ds.recordcount x 2; you also need a variable to keep track of which iteration of the master record you are on and set it back to 1 after the copy of the recor…
-
there is nothing about vertical bands except the the oldstyle crosstab demo report in the main demo and something in the usermanual IIRC, but this may suit your needs better, if the vertical memo is always in the same place on the output page use …
-
Try using a vertical headerband
-
Look at the main demo drill down nested group report
-
as far as i can remember fr did not support the clipboard for chart pictures only load from file. and you could not do that from a design mode preview only from a compiled .exe
-
in your demo .fr3 file you have no headers and footers only a page header set the rtf export to text and the page numbers are exported correctly opend in ms word
-
if you have purchased a full version of fr go to your dlpage and see what is available for you.
-
try the latest build 5_1_3 works ok for me
-
No it is not a bug it is a miss use of the fr group bands see the main demo nested groups for an example of how to use group headers for a master detail report using one query across all tables or see the masterdetail report for using tables.
-
set the reports designpage duplex property to smSimplex
-
have you read the user manual chapter on report design considerations? misalignment between objects vertical or horizontal can cause many extra commas to be inserted
-
Your problem is probably here "if tFrxMemoView(sender).lines.strings[count - 1] = '----' then" wrapping has occured, but you may not have 4 '-' characters depending on the length of the previous line and the width of the memo and rhe font size
-
THIS IS NOT A BUG READ THE PROGRAMMERS MANUAL ON MODIFYING A VARIABLES VALUE All single quotes must be doubled; - string should not contain #13#10 symbols.