gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
make report 2 pass report in the obp event of the footer write code to control visibility if engine.finalpass then begin visible := ( = ); Note a better option is to use the page footer band for displaying only those items you want on every p…
-
tor change your thinking just a bit put them in the group header set the group header to reprint on newpage, this will give you a header on each page with the correct info and set its start newpage prop to true. i am assuming the group condition…
-
sounds like you are using the limited version supplied with xe4, in which case there is no internal events for the report. requires at least fr4 standard version to have internal code scripting.
-
[quote Which files should it place or change in the System32 folder? So that I can check that this hasn't occured and we are sure that the problem lies there. [/quote] the runtime and designtime bpl's check your ide xe2 introduced a rremoved pack…
-
read the programmers manual on batch reports.
-
internal code is not available in the embarcadero version, you must use at least standard version.
-
a picture view can be connected to blob field. for multiple images across divide either the band or the page into columns.
-
set the allow split property of the band containing the memos to true, stretch prop and set the memos stretch mode
-
in design mode when you create the variables mnu>variables after creating the variable put a value in the expression box at the bottom of the variable creation page. or from delphi create the variables before calling design report;
-
When using a categorized variable in a memofield in the report you must give it a default value if you wish to preview from the design environment without runining the .exe file. the onget value event is external to the report and requires a runnin…
-
use nested groups add a second group header set condition to the activity field and set its height to 0 if you dont want to see it. and a second groupfooter for your subtotal
-
put a chart object on the page and edit it's properties to suit. your needs. write code in the obp event of the chartobject. procedure Chart1OnBeforePrint(Sender: TfrxComponent); begin Chart1.AddSeries(csLine); Chart1.SeriesData[0].DataType := …
-
The tfrxreport component has an onreportprint event. This will only tell you that the report has been sent to the printer, it could still not be printed depending on how the printer and the print que is being handeled in windows.
-
anton can you post a small demo of your problem here.
-
glad it worked for you. here is a little trick if you create a lot of reports with similar categorized variables save the dictionary and load it when you design a new report and they will be available to use in the expression builder.
-
Save the output to an fp3 file and post or email it to me. gord@fast-report.com
-
this might help you Chart1.SeriesData[0].Source1 := 'A;B;C'; //labels Chart1.SeriesData[0].Source2 := '1;2;3'; //x Chart1.SeriesData[0].Source3 := '4;5;6';//y Chart1.SeriesData[0].Source4 := '10;20;30';//offset Chart1.SeriesData[0].Values5 := '…
-
are you saying you only have 1 memoview in the column. Please when i ask for a screen shot do not sub something else I am looking for obvious errors.
-
ok Marc ill see if i can find it and will email you.
-
post a screen shot of your report design area of the master data band
-
try stretch mode smmaxheight
-
try this Total for Ship Type: [GroupShipType] = [Count(RepDetail)]
-
what is the groupheader condition?
-
have you tried using fr's built in expressionbuilder when editing the memo?
-
not very clear as to what you are trying to do or where you are working from, delphi or rep[ort code.
-
add a 0 height headerband add a footerband set to stretch in the footerband draw a diagonal line from topleft of band to bottomright in the obp event of the footer write code footer1.visible := ( <> 8); // sub your number of lines of yo…
-
need more info. what bands are you using?
-
Need more info about your report. what method are you using to produce the blank rows?
-
try setting the maxwidth prop of the tfrxcrossview object and you may need turn off autosize
-
you can find everything in the Programmers manual and user manual first are you working with a report saved as a file .fr3 or one stored in the dfm. if working with a file you must load the file first. 2 clear the variable list if it was already …