gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
http://fast-report.com/en/documentation/ classes and properties of every object is available in the designer classestab read the user's manual on crosstabs thoroughly. for the pictureview use the file link property, you could create a variable(ex…
-
no pagefooters in subreps.
-
bill build your own script file and add procedures as you as you need them and connect to them ie frxreport1.Clear; // working with a basic starting script frxreport1.LoadFromFile('testscriptvars2.fr3'); // initially the code page contains only…
-
file extension cannot be changed.
-
see the main demo other festures urls and anchors
-
that is a function from the add function lib by Stalker i have never gotten it to work either. you can always just subtract oldnate from newdate or you can write your own function ie function DaysBetween(Olddate: Tdatetime; NewDate: Tdatetime): …
-
that would result in the first record of the master data printing n times unless you write code to control the dataset movement. if your bands and record spacing is always the same height(not stretching ) instead of using framesof memos add an ove…
-
the rowcound property has no effect when the band is connected to a dataset., it only controls howmany times the band outputs its objects to the output page. if the band is connected to a dataset the dataset controls the output.
-
first make report 2 pass,(report engine options) you may need to set your own variable in code if system variables (page, Page#,totalpages, totalpages#) don't work for you.
-
in your first case just setting group condition should work use a query with an orderby clause to supply the data. looks about the same for the second case. for overall you could change from storing reports in dfm, which by the way causes exe blo…
-
internal event handlers are not available in basic edition only from standard up.
-
mnu/file/pageoptions other tab largeheight in design mode
-
"Their example has the same problem. Cust. No.. 3055 from the customer table is not displayed. This is exactly the problem that I have. There is no detailed record exists for the Cust. No.. 3055." why did you not say that in the first place? set …
-
i posted a demo file in the binaries news group for you.
-
"In TfrxADOTable I used the property MasterFields with the index fields Tabelfield1 = Tabelfield2". this does not make any sense. you would set table1 master to query1 and in table1 masterfields select one field from master one from detail if the…
-
engine.stopreport;
-
use the rtf memo view not the standard
-
off hand it sounds like you should be in the studio forum What product are you trying to use?
-
your in the wrong forum
-
as i said earlier the design is probably wrong. design page 1 prints on front and back of paper (set page to duplex), the number of detail records that can fit on any side of the page is 2 so in the obp event of the detailband code to start a new …
-
i can't see what you are trying to acomplish here. var lMonthSubTotal: String; function MonthSubTotal: String; begin Result := lMonthSubTotal; end; procedure Memo14OnBeforePrint(Sender: TfrxComponent); begin lMonthSubTotal := (FloatToSt…
-
" An idiosyncrasy of an aggregate function is that it should be used inside the ???Text??? object; one can call it in the script after it is used. If an aggregate function is used in the script only, (without using it in the ???Text??? object), …
-
did you take out a support ticket?
-
SUM(,MasterData1); is returning null. again read the user manual chapter on script and on aggregates. BTW the function doesn't make any sense since you can set the display format of the memo.
-
this one will become tricker depending upon where the memo showing page balance is located. ie page footer, group footer, or other footer read the notes in the manuals about aggregate function peculiarities(must be used in correct footers, and not …
-
if your variable is a categorized variable in the variable list you must use set methods in code. Set('Balance',( + 10)); if it is a typed variable declared at the top of the code page it is global and available to all procedures. ie var Bala…
-
[IIF( ='',,)] assuming balance is a typed var declared at the start of the codepage := + ; becomes Balance := Balance + ; this one is a bit differrent [] should be outer, fieldvalues <> Page_Balance := Page_Balance + SUM([IB_Quer…
-
not clear what you are asking bands have no relation to joins they are only place holders on the design page the control the movement through the records of the dataset to which they are connected or to the rowcount prop setting(no dataset). and…
-
oops move query1.next; up before the first end;
-
it is a bug in the exporter and has not been resolved as yet.