gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
procedure Chart1OnBeforePrint(Sender: TfrxComponent); begin if then begin chart1.series[0].active := false; chart1.series[1].active := true; end else begin chart1.series[0].active := true; chart1.series[1].active := false; end; end;
-
not all props available but here is a hint the series is an indexed list so first series is series[0] what you may have to do is create more than 1 series using the same datapoints and set the active property of the series to true or false.
-
works ok for me tested main demo subreport report. fr3.11 d7 win98 word97 d7 winxp pro word2003
-
in designmode filemnu pageoptions in the dialog selet otheroptions tab and set unlimitrf height option.
-
Not sure of what you are asking. a band has a fixed height unless you set its stretched property to true and then it will only stretch if objects it contains are set to stretch.
-
hint use the onbefore print event of the detail band to check freespace and if less than the detail height or detail height + columnfooter height +page footer height to force a newpage, and use a column footer band for page total sums
-
IIRC fr3.7 did not have the old cross data bands and 2.53 did not export them Current upgrade of fr3 is fr3.11 they are called vertical bands now and 2.54 can export them .
-
first you are in the wrong forum tou should be in fr3 forum in fr3 you can no long assign a chart if your chart already exists on its own form new method for fr3 use a pictureview object in the report instead and use report beforeprint eve…
-
Use loadfromstream, savetostream methods
-
More info needed! What are you trying to exclude, lines from an original rtf file or lines produced by added fr variables?
-
This is a problem of Delphi IDE which is aggravated by fr's auto storing the report in the dfm, but it can also happen when the ide has alatge number of 3rd party libs. it involves stackspace and the systems memory paging, the easiest way to sove t…
-
Hi Mike i have not yet tested 3.11 to see if this has changed but keep this in mind in stead of setting the alignment to bottom, add a child band connected to the databand and place the line in it. In fact you must do this if any objects in the d…
-
No it does not apply to both Fr3 rtf object has an expression delimiter property which can be set to other characters.
-
procedure ReportSummary1OnBeforePrint(Sender: TfrxComponent); begin if engine.freespace > reportsummary1.height then begin //Engine.CurY := Engine.PageHeight -reportsummary1.height -Band3.Height - 1; end; end; procedure ReportSummary1…
-
adding objects Re read the programmers manual on building reports from code you must declare variables of required types and find finobjects and then add to the correct object in the same manner, as if you were building from scratch.
-
Hi i ll post a small demo in the binaries newsgroup shortly for Lanceras
-
newsgroups.fast-report.com fast-reports.public.binaries
-
There is also a demo in the of a way to do it in the Binaries news group. hrizontal detail fr3 I posted it there a while ago jan 2 IIRC.
-
IMHO there is no quick easy way you will take less time redesigning in fr3.
-
take a look in the public.binaries newsgroup.
-
Did you set the keeptogether prop of the group header?
-
See reply i posted to same message in news group.
-
you can't modify the prop at that point as the engine is already processing. you could from a frdialog at the start ie onclick of button band4.formnewpage := checkbox1.checked. however you can force a new page ie in a databand if [Line#]>…
-
make sure that the report component you are using does not have a pass word set in its reportoptions. also you can open the .fr3 file in wordpad scroll along the top line till you find reportoptions.password remove characters between "" save and ex…
-
the simplest way is to save the frf of a header footer if you are working in ide right click report component when it comes up open the .frf then go to saveas save it undera new name add what you want and save and exit. You can also create your o…
-
tablename."fieldname"] * [tablename."fieldname"
-
in which onbeforeprint event ? syntax bandname.FormNewPage:= true; since you are using formnewpage it appears you are asking about fr3 if so then please post in fr3 forum in future.
-
Hi Gabe i posted a demo on user functions a while ago in the binaries the best way is to create a function lib a .pas file and add it to the uses clause of the form it will then be avail for all report components in design mode. when you add rep…
-
Tes that solves it when a memo is placed directly on a page yhere is no way for the engine to determine freespace remaining.
-
be carefull where and when you add your own functions make sure it is done only once.