gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
load the reports preview pages frxreport1.previewpages.loadfromfile('path&filename.frp')
-
what you have written is not making sense to me, but i will try to explain, when inside a memoview object's memo,remember to treat [] as show the value of the expression contained within the braces. you are trying to get value1 then a plus sign the…
-
after compiling and installing the psoft lib just add psFastReport to the uses clause of your form the psbarcode component will be available in the frdesigner toolbar.
-
you can also use the psoft barcode lib. http://www.psoft.sk
-
in what event are you writing this code. and what is the underlying field value type in the table?
-
frxReport1.PrepareReport; frxReport2.PrepareReport; frxreport1.PreviewPages.AddFrom(frxreport2); however if you are using page numbering variables their output will not be correct.
-
read the programmers manual on building a composite report you can also append the previewpages of one reportcomponent to the previewpages of a previously prepared report component(must contain at least 1 previewpage).
-
make sure the report component modal property is true; you are creating the problem by moving from one node to the other when calling preparereport. it probably has not finished when you jump out. try calling clear report before loading, 2 once y…
-
page orientation is a property of the designpage once it is set it does not change, it remains for the life of the report(all the pages output by that design page and its objects). the only way you can have different page orientation is to create m…
-
"Of course, it wouldn't have run in the older Version otherwise, would it. All events are covered by code, but this code isn't executed. Breakpoints are not reached." the old 2x version used the fruserdataset not the frxuserdataset.
-
read the usermanual on using the engine object.
-
It would help if you tell us which version of fr4 you are using. ie 4.7.103 basic,standard,pro,enterprise. 1 did you write code for the events of the tfrxuserdataset. 2 in design mode check the menu report data to see if the dataset exists and is…
-
add the tfrxrichobject to the underlying delphi form or add its unit to the uses clause of the form
-
place a tfrxgradient object on the underlying delphi form or include its unit in the uses list.
-
why the call to frxreport2
-
first have you made the report 2 pass? where is the memo you are trying to show located, you are working in the oap event of the footerband, so you have finished with the footer usually in a 2 pass report code to modify props etc. is usually writ…
-
NOT a bug, improper uise. from the programmer's manual You can use the ?«Page,?» ?«Page#,?» ?«TotalPages,?» and ?«TotalPages#?» system variables for displaying a page number or a total number of pages. In composite reports, these variables work in…
-
see my reply to the same post in the fr4 news group
-
from delphi it would be right after loading a report code to load from file... here frxreport1.dictionary.clear; frxreport1.dictionary.loadfromfile('path&filename.fd3'); i have never tried it from inside.
-
yes it can be.
-
it is not a property of the memo object it is a property of the band that contains the memo object. (reprintonnewpage) it can be set when the report is loaded using the findobjectmethod. you can not change this in the preview var head: tfrxheade…
-
procedure TForm1.Button7Click(Sender: TObject); var pic:string; begin if opendialog3.execute then begin pic:=opendialog3.filename; frxreport4.LoadFromFile(wpath+'pictest.fr3'); frxreport4.variables:= #39+pic+#39; frxreport4.showreport; en…
-
when you combine fp3 files thes are completed reports and you can't change the page numbering. otherwise read the programmers manual on batch reports
-
picture1.picture.loadfromfile();
-
that functionality already exists for combining fp3 files use 2 tfrxreportcomponents load the first fp3 file into the first report component, load the second fp3 file into the other report component. then add the previewpages from the second to …
-
that tells me you are doing something wrong in your application code so you will have to find it yourself.
-
assuming you already have a report designed set the props of the frxdbdataset before calling the report. ie rangebegin := rbcurrent rangeend:= rbcurrent read the programmers manual as working from delphi the users manual as from working inside …
-
that can depend upon many things. where are you on a record? (in a dbgrid) are you using datasets which are internal to the report or frxdbdatasets you can set range props from code need more info to help.
-
Johnny you will have to re think your design layout to accommodate all the enduser wants. the band(depending upon its type and prop settings) controls where it begins to output vertically the actuall position is goverened by the object's position…
-
By the way, the method I've presented works fine if there is no frIBQuery component in frxReport1 is this a typo frIBQuery component and you meant frxIBQuery component