gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
are you trying to work from an event inside the report or from delphi using the tfrxreport components onbeforeprint event. and why are you trying to do it 100 times.
-
it is exactly what delphi is telling you. if sender.name := 'Picture5' then this is not boolean this is if sender.name = 'Picture5' then
-
there is the possibility that your design idea is wrong and that it should be a single page design, where you control which bands are printing by writing script code in events of bands. multi design page reports usually have a dataset connected t…
-
set report print options collate to true.
-
Bear in mind, FR is a banded report generator, not a full blown word processor. pageination in fr depends upon stretch, allowsplit settings of band, stretch mode of object, along with the amount of freespace left on the page being output by the eng…
-
try using the rtf memoview.
-
run the main demo.
-
Oops i missed the groupfooter bit yes that is true the sample code does not work when using grouping, and it was not meant to.
-
it works fine for me in that version also correct syntax no [] if value = 1 then Memo.Font.Style := fsBold;
-
what build# of fr4 and more info about which event of which object(band) you are using to call the showband method
-
once you have started processing the page it is to late to change props. use something else in the main procedure to determine the duplex setting. perhaps record count of a dataset.
-
works fine for me 4.7.184
-
Grzes wrote: » Hello I have a problem with FastReport.TfrxReportClass.FindDatabase method. I'm working with FastReport version 4.7.53 and win xp sp3. I get this exception on only one computer. On other computers, this error not exists ( wit…
-
it's a windows thing unblock the file rightclick on the file in explorer select properties and unblock.
-
you must get a handle to the printer and read its props(devicecaps) or set them orchange which will be the default printer. all at delphi level before loading report. you can add frxprinters.pas to your uses clause
-
read your programmers manual Access report objects from code. as i stated before duplex is a property of the design page, when set the page(s) output by the engine will be printed using duplex mode. typical var Page1: TfrxReportPage; begin…
-
IIRC use of the frx2xto30 conversion unit was based on the report to be converted having been saved from fr2.5x use of that unit allows you to open and save the old format file from fr4. to the new .fr3 format. BTW i notice you are using an old f…
-
default is application dir. dont't for get your string delimiters the property is a string and the folder must exist ie frxreport1.clear frxdesigner1.opendir :='C:\Documents and Settings\Administrator\My Documents\My fr4 d12 projects\subreports\…
-
have you tried the latest daily build?
-
it does not belong to the report print options it belongs to the design page
-
make sure your richview object has enough width it may be causing the problem also look at the wysiwyg prop settings.
-
set the allowsplit prop, the stretch prop for the band and the stretchmode prop for the rtfmemoview. if within the band you have other objects which are below the rtfmemoview move them into a child band.
-
"that totals are printed only on the last page but directly after the last record and not at the bottom of the page (better, but still no good)." control the footers position from its obp event, using the engine object. if engine.freespace > …
-
parameterize the query statement using for example =: p1 in the param editor set the value and type for the parameter. see the main demo internal datasets internal query report.
-
set the keeptogether property of the group header(s)
-
the first thing is not to confuse the design page with pages output from(by) the design page, in most cases you would probably inherit some basics from template, ie page header band with logo other items you will possibly use the printable propert…
-
you can alter the widebarratio property. most barcode types limit the number of characters they can handle. your best approach is to print some samples and test the reader.
-
the data tab is the page where you place internal data objects what data objects are available in the designer depends upon which sets of frx database engine components you have included in your project. if you are using frxdbdatasets (external)fo…
-
read the programmers manual and the users manual
-
no matter where one starts you can never satisfy everybody. read the programmers manual as working from delphi, the users manual as working from within the report and its scripting, the developers manual as to how to create custom objets and funct…