gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
if you down loaded the version of fr for your version of xe you should not need to. make sure you have uninstalled the version that comes with Delphi XE before installing the purchased version. BTW i hope you realize that the basic version does n…
-
you are posting in the wrong forum please post in the forum of the product you are using. and what is your question.
-
the recompile wizard is used for recompiling fr for other delphi versions or when changing tchart versions etc.
-
obp event is the onbeforeprint event. write code in the obpevent of the subreps masterdataband if ( = ) then subrepmasterdatabandname = true esle subrepmasterdatabandname = false
-
You can't you should use appropriate header and footer for masterdata the page footer band prints at the bottom of the page.
-
jamertroy wrote: » Hi. I'm new here. Is there a documentation about Styles though? I was looking to use it as a reference. what part of read the programmers manual on styles do you not understand?
-
Sorry i ment to add this. To make the area of the band apper to have a color add a memoview the height & width of the band, behind all other memos. if you want the rows output by the band to have alternating color set the highlight condition …
-
the first thing to understand is that a band is not (output) printed it is merely a place holder on the design page, only its contents(objects) are output.
-
FYI the memo of a tfrxmemoview is a multilined array of twidestring
-
Unless you are building composite reports you could use 1 tfrxreport component only. the number of tfrxdbdataset components will depend upon how you are connecting to data take a look at the main demo you will find the frxdbdatasets in the data m…
-
Set the band to allow stretching set the memoviews stretch mode property and vertical align property to suit and wordwrap to true.
-
in the pie series editor increase the arrow length to suit
-
did you read the user manual chapter on exporting as well as report design refrences?
-
the events are not available in the xe2 or basic versions you need at least standard edition.
-
read the chapter on crosstabs in the users manual
-
try setting the visible property of the subreps masterdata band in its obp event
-
in the first demo you sent there is some other problem as the page header and footers are not printing at all. i would use a query across all 3 tables see the sales query in the nested report demo report the query is in the datamodule of the proj…
-
is there a field that is common between the two
-
[*]
-
see the main demo urls and anchors report
-
If your report is connected to tables in the same maner that is your problrm. nested Group headers do not work with tables. I would try this You need 1 query across 2 tables with an order by clause field 1 shoud be the the condition for the 1st …
-
write code in the obp event of the object or band containing the object to set the objects left position also write code in the oap event to return to original position or effect will be cumulative.
-
for down across use page columns, for across then down use band columns
-
try yourmemoname.value just create a variable and associate to the datafield and use it in all the memos,
-
Then all other 9 memo field's text is set to [MAccountName.TEXT] this Account Name:[] is the actual text of the MAccountName memo not what is displayed in the memo after processing
-
make the report a 2 pass report use a variable to get the sum of the field on the first pass write code in the obp event of the header and master data band to hide the memoviews on the second pass if the variable is > 0 ie if engine.finalpas…
-
without seeing your .fr3file itI can't tell what you are trying to do. I assume is a field in the master dataset. what happens is when the page is not visible the mdband still runs through all the data till the end of the dataset. so you have no…
-
on the main page of this forum under fr4 click on the product page here when the product page appears click on the documentation button then dl the files you want. then spend some time rweading them and looking at the demos of the product you hav…
-
only in internal script.
-
here is a sample procedure TForm1.Button4Click(Sender: TObject); var mycross: tfrxcrossview; cm: tfrxcustommemoview; begin frxreport2.LoadFromFile(wpath + '60.fr3'); mycross :=frxreport2.findobject('cross1')as tfrxcrossview; mycross.CellFu…