gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
when you want to retrive the value of the var enclose in [] they tell the parser to calc the value Font.Color := [COLOR_FOR_VALUE]; also your syntax may have to change slightly. memo1.font.fontcolor := [COLOR_FOR_VALUE];
-
typically create a variable in report dictionary no expression name dpath and use the onactivate event of the frdialog to set dbname or path to this variable db1.datapathname := [dpath]; in delphi code where you call report after loading report …
-
forget that last message i see what your up against.
-
Hi Alexander where in code was it fixed in 2.53 i used it as a feature so that i could stop operators from printing an un finished invoice but supervisor could print a copy of an unfinished invoice by pressing Ctrl P
-
try using send to back when you add the memo for color then add others over top and see what happens.
-
hi Syeve here is simplest way columheader with fields from master groupheader not visible condition value of mdb keyfield mdb detb subdetb groupfooterb non visible code just connect the band events var done: boolean; procedure ColumnHead…
-
There are other possibilities run an ordered by query to group the data to fake a mdddd relation in the outer footer oap reset the boolean var or use a column header it will show on every page after pg header
-
As long as the right memo will interfere with an object to the left it will only move left that far or until it hits another object now look at what would happen if the memo to the left was small and auto sized as the text gets larger the right me…
-
Hi you have to track wether or not you have finished all the details for the current master record and which page you are on so you will probably have to add detail footerscould be none visible, and a 2 variables 1 boolean to track if all done, 1…
-
See Alexanders reply in this topic more doubts about DBCrossTab
-
go to page 85 of the usermanual.pdf file.
-
happy to see you got my answer to your direct email
-
Hi Kevin I must have been blind last night. found and downloaded a few minutes ago and all went fine for d7 all options were already selected which included a d7 option only thing i had to select was dir i wanted to use.
-
Alexander can't see a dosumentation pack on any of the pages.
-
Sorry there is nothing in windows hlp format or chm format only the pdf files.
-
The links to the docs are working ok now
-
Field aliases are part of the frxdbdataset component use its props and methods to alter aliases. field aliases are a list of Tstrings with the format fieldname=new name field aliases list can be saved and loadfrom a file as well.
-
Just as a general note when using the crosstab object if your crosstab result will have more rows than will fit on a generated page, then you must place it in a band or you will get blank preview pages.
-
just to let you know i have tested with a db that produces a large no of rows and a large no of columns and i do not get any blank pages. using the 2 crosstab report as is, dbl check your right hand page margin and make sure it is set to no less …
-
try setting the Allow split property of the bands if that doesn't work then use subreports for each crosstab
-
See the 2crosstab report in the main demo.
-
Fr does not support Unicode.
-
hi i can print it all using 0.5cm on all margins on a4 on canon i350 check your printer docs for your printer your printable area may be smaller. and you would need larger margin setting
-
in case you didn't find how to do it here is a sample procedure Cross1OnPrintCell(Memo: TfrxMemoView; RowIndex, ColumnIndex, CellIndex: Integer; RowValues, ColumnValues, Value: Variant); begin if not Cross1.IsGrandTotalRow(rowindex) then if ro…
-
I would expect the problem is that the bottom margin is 0 and is probably outside the printable area of the printers range. here is a simple test to try open designer select new delete any bands add a frame to the page set the frame width to 2 pi…
-
Generally what cecil suggested is true providing you are trying to mimic a customers preprinted form that has that info on every page produced. if not use a column footer band for your second question a lot depends upon what other bands you have u…
-
This forum is not for fr3 it is for fr2.5 so do not expect anything answered here to work in fr3. go to fr3 forum or fr3 newsgroup for questions and answers on fr3.
-
see reply to same question in newsgroup.
-
Your probably looking at the data pane and trying to drag. when you open in designmode got file newreport and select the wizard.
-
select the chart object rclck to bring up editor add series set type and props and fixeddata here is some sample code procedure Chart1OnBeforePrint(Sender: TfrxComponent); var fcount,indx,l2,l3:integer; begin l2 := Length(yv); l3 := Length…