
gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
procedure mLabelOnAfterData(Sender: TfrxComponent); var i: integer; begin for i := TfrxMemoView(Sender).Lines.Count - 1 downto 0 do begin if TfrxMemoView(Sender).Lines.Strings = '' then TfrxMemoView(Sender).Memo.Delete(i); end; end; mlabe…
-
yes but best to look at newest fr5 pro edition Comparison of FastReport VCL 5 Editions FastReport VCL 5 has three editions with differing features and pricing. FastReport 4 Embarcadero RAD Edition This edition is distributed with Embarcadero …
-
write code in the obp event of the memoview or the band containing the memoview.
-
Yes you can read the usermanual chapter on exporting reports
-
yes you can providing you have installed the internal dataset objects
-
i expect you did not look thoroughly enough. under basic reports you have a master detail subdetail report and a nested group report which shows how to do the same using 1 query using all the tables.
-
what you do is use two group headers i suggest you run the main demo and look at the various reports for ideas.
-
turn on the desired frame lines for each memo view
-
In the obp event of the band you want to fore down write code to check the engine .freespace and set the engine s cury position. here is a sample of driving a summary band down to the page footer. begin if engine.freespace > reportsummary1.he…
-
Jerry the easiest way is to create a dialog page with check boxes set variable to true or false depending upon the checkbox state in the bands that you want to hide set the visible proberty in the obp event bandname.visible := varname
-
change your thinking of the design first design page1 will have no master databand just memos connect the dataset that you had connected to the master band to the report component itsel, this will give you the number of times the report is run d…
-
open the main demo project look at its data module and how items are connected. compile and run the demo and look at the demo reports
-
what is the error showing?
-
go to http://www.fast-report.com/en/product/fast-report-vcl-5/
-
check the bands allow split property, is it set to false? or write code in the obp event of the band if engine.freespace < bandname.height then engine.newpage;
-
use an overlay band to draw grid lines. when you have only a few records, and you are using other footer bands write code in the obp event of the footer to drive it down to the page bottom. to limit the number of rows to 10 write code in the int…
-
not very clear as to what you are trying to acheive, your code seems to have nothing to do with your topic title>
-
maybge if you posted in the correct forum you might get a reply. you are using .net so post in the .net forum.
-
no it can't Compatibility issues between FastReport 5 and FastReport 4: - v5 uses the same file/package names as v4. You have to uninstall v4 before installing v5. - v5 uses the same file format, .fr3 and can open v4 files without any prob…
-
Hi Mick AFIK it is not available yet probably because it is just in beta stage
-
version 4.15 - TfrxEmailExport.UseMAPI property renamed TransportType. I don't know if this helps as i don't use mapi probably best to take out a support ticket
-
have you tried the newer version ? current is 4.15.9
-
can you post a copy of your .fr3 and the output .fp3 file ? what db engine are you using and what version of fr4
-
not clear as to what you mean by "I'm trying to send data to the bands put it repeats where are you working from delphi or internal report code
-
you need to understand how the report engine processes objects 1 top down depending on band type. 2 left to right in order of creation within the band. 3 the value method of a memo only returns the value of the last expression in the memo. "Me…
-
it seems like you are over complicating the situation. generally just hide the bands by setting a variable check the variable in the obp event of the band you want to hide. or use multi design pages and determine which page you want to process/vie…
-
are any of the bands stretching what is moving us to the 2nd column? and any other settings of bands and footers
-
no it is not a bug, when the bands are set to stretch we need to use the onafter calc height event
-
turn autosize off and set maxwidth and minwidth props.
-
you can't interleave groups