
gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
not clear as to what you are trying to do. a data band is its own band it is not placed on a page footer band
-
load the image into the backpicture of the page
-
as with any version of fr to display sums of values contained in a group in the group header the report must be 2 pass store the values in an array on the first pass in the second pass substitute the value in the array in the memo/s in the header.
-
fr code editor does not support multi dimensional arrays
-
uninstall fast report using the fast report uninstaller. empty the the previous fastreports/FastReport 5 folder. remove any fr bpls from delphi project folder and windows system or system 32 folder install dl and install appropriate fr version fo…
-
Karen read this topic it may help you understand what is required http://www.fast-report.com/en/forum/?p=/discussion/11839
-
yes the embarcedero version is limited
-
make sure your program has adminstartive rights
-
create a variable in the report connect it to the data field you can get its value in delphi. assuming the memo is on masterdata1 use the obp event of the report in delphi if sender.name = 'Masterdata1' then if frxreport1.variables.value = wha…
-
have you tried updating to 4.15-11
-
i would suggest you go to your dl page and update your fr4 your version is way out of date the latest is 4_15_11
-
yes but awkward easier to do it in the internal obp event of the memo or the band containing the memo.
-
after loading the report typically var Page: TfrxReportPage; { the first report???s page has [1] index. [0] is the Data page. } Page := TfrxReportPage(frxReport1.Pages[1]); { modify the size } Page.PaperSize := DMPAPER_A2; { …
-
the page settings are part of the design you can set them after loading and before calling showreport, not from the preview window.
-
what are you expecting, you have added a custom preview but you have not called the form that has the custom preview
-
use 0 frame typ is the sum of ft integer values or ftnone
-
You have posted the same message in 2 forums which product are you working with?
-
you should not see both uninstall fr5, uninstall fr4. remove any frx bpls from projects dir and windows system dirs delete any invalid search paths in delphi xe6 download the latest version from your fr dlpage and reinstall
-
yes i got it you should set the startnewpage property to true for the detail band
-
post a copy of your fr3 file here along with fp3 file(saved report) i'll take a look at it. btw what version and level of fr4 are you using
-
normally you set allowsplt property of the band
-
it appears you are trying to set the margin from delphi code, but you cant set it from this point, as the engine is already processing the page you can only set it's design just after loading the report and before processing.
-
place the lines in a child band attached to the footer
-
iirc set the subrep print on previous page prop to false
-
what you may want to do is use a detail band not a second master data band, place your subrep in the detail band set the detail bands rowcount prop to 1 and write code in the obp event of the detailband to force a newpage. engine.newpage
-
no what i am asking is how are the datasets that the master databands are connected to related.
-
you must call prepare report before "frxReport.Export(frxPDFExport);" or there is nothing to export.
-
again what is the data relationship between printed data and pictures ?
-
Not sure why you are using 2 master bands? what is the data relationship between data and pictures ?
-
after setting all the export component propertiesproperties you mult call frxReport.Export(frxHTMLExport1);