gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
report engine option convert null false [IIF( = null,'n/a',)] report engine option convert null true [IIF( = '','n/a',)] work fine in 3.08 for me. you probably need a second set of [] around your second iif function.
-
Alexander I can Confirm it still happens all appears ok until you Try running group total in header report. see pleuns message in the news group. Re: FR3.08 freezes
-
set the breaked property of the band
-
fast-reports.public.binaries newsgroup Advantage Database Driver FR3 sept16 2004 from Terry Mitchell
-
there is also some sample code in the binaries newsgroup see the topic how to add a user function in fr3 around nov/7/2004
-
Here is a sample, judging from your last reply sample stop trying to write fr2.5 code for fr3. procedure TForm1.Button1Click(Sender: TObject); var Page: TfrxReportPage; Band: TfrxBand; DataBand: TfrxMasterData; Memo: TfrxMemoView; begin {…
-
either pass the path into the report as a variable when loading or use te report components onbefore print event.
-
read the sections in the user manual on bulding reports from code starting on page 23 once you understand how to add bands and objects to the band use the correct band type tfrxoverlay
-
set the report components data source property to the correct dataset
-
I would expect you will need your own variables to track page numbers.
-
this works fine for me no need for extra find and cast // wpath string global set in forms onshow event WPath := ExtractFilePath(ParamStr(0)); procedure TForm1.frReport1BeforePrint(Memo: TStringList; View: TfrView); VAR cstr:string; begin c…
-
This should be a clue LoadFromFile('C:\Images\Img01.jpg') it works, so either your variable's value is wrong or you need to pass the opening and closing apostrophes LoadFromFile('+varname+'); check to make sure your variable contains the comp…
-
the report component's printoptions turn off show dialog.
-
The best bet is to add an overlay band containing a memo to the design set properties for band and memo as required. it can be placed below the footer when printing it will start at top of page. then all you need to do is control its visibility f…
-
It really depends upon where you are controling the number of copies from If working through the printer dialog from preview your out of luck. the most reliable is rtmultiple report with 2 design pages.
-
try using property PageHeight: Extended; Returns the height of the page???s printable region. property PageWidth: Extended; Returns the width of the page???s printable region.
-
fROM FAQ.TXT 2.34. How to print a picture that stored in a file? a) use TfrReport.OnBeforePrint event: if View.Name = 'Picture1' then TfrPictureView(View).Picture.LoadFromFile(...);
-
try using the formatdatetime function [FORMATDATETIME('mm/dd/yyyy', [tblname."fldname"])]
-
use complex expressions for the last 2 items in your memo by using nested fr functions. ie [IF(FIELDISNULL(fn), tv, fv)] [IF(FIELDISNULL([ZMySqlTable1."address1"]), [ZMySqlTable1."city"] , [ZMySqlTable1."address1"])] [IF(FIELDISNULL([ZMyS…
-
IIRC it is updated flexlabel 2c demo about sept 15 2004 if you are using oexpress as a news reader check your sync settings for that group as well as when you delete files. unless you like writing a lot of code you are best to make report forms f…
-
Many ways. how complicated is up to you I use a hidden encrypted registry key to see if app is demo version if it is i set reports to be shown in different report component with the preview printbutton set to false, showgrayedbuttons to false t…
-
Fur any one experiencing this behaviour check your report design for hidden duplicate data bands. probable cause adding a datafield to a band and leaving the create band option turned on.
-
Hi Graham make a zip of your .frf and the preview .frp and email i'll take a look
-
use 2 master bands with headers footers for each.
-
see page 44 in the user manual.pdf you will also find and updated label demo in the fast-reports.public.binaries newsgroup at newsgroups.fastreport.com
-
if the blank pages are showing in the preview something is amiss the preview is just a view of the emf pages produced by the engine before being sent to the printer.
-
see reply to http://www.fast-report.com/en/forum/?p=/discussion/1598
-
generally in the obp event of the band check the datafield using the fieldisnull function provided and turn visibility of the memo on or off or in the memo itself use a complex if function checking the datafield for null in the expression portion a…
-
Hi Graham Some printers produce over spill as seperate pages at the end, over spill being an object that is trying to extend into the non printable area of the printers page. what seems to cure this is to open the fr_printer.pas file and uncomment…
-
Pleas post questions about fr3 in fr3 forum.