gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
set the columns on the master data band.
-
double pass is used primarily in cases where you want data that would be displayed in a footer displayed in a header. see the main demo dialogs and script totals in group header report. or where you gather data on the first pass to be used in the…
-
add 3 series to the chart use fixed data, for the values, these are string values separated by semicolons you can build these strings in report code while iterating through data and assign them to the series before displaying the chart.
-
Chart1.Series[0].Title := your string
-
it was produced in fr4.0.16 and the included delphi form and unit from d2006 everything is now totally in the report.
-
you should always delete in reverse order procedure mytextobjectnameOnAfterData(Sender: TfrxComponent); var i: integer; begin for i := TfrxMemoView(Sender).Lines.Count - 1 downto 0 do begin if TfrxMemoView(Sender).Lines.Strings = '' then Tf…
-
i posted one a long time ago in the fastreport binaries news group if you cant find it let me know and ill send it to you.
-
Maybe this will help. i do not know about kylix versions but in other(delphi,c++)versions the engine option treat null as zero can be set to true
-
after loading the report var Page: TfrxDialogPage; Button: TfrxButtonControl; Combobox : TfrxCombobox; { add a page } Page := TfrxDialogPage.Create(frxReport1); { create a unique name } Page.CreateUniqueName; { set sizes } …
-
you must create a custom numeric to text function
-
an easier method is to use a subdetail band containg the detail memos you want. do not connect the band to a dataset, in the obp event of the detail data write code to set the visibility and rowcount prop of the subdetail band. ie if >1 then…
-
sorry i miss read your problem change my refrence to master data to detaildata.
-
that is not the way i would habdle it i would create an unattached child band duplicating the memos of the mdband in the obp event of the master write code to populate the child memos if the number of pieces is>1 set an index variable to numbe…
-
fixed data is string of values separated by ; ie 'value1;value2'
-
try Lieferdatum: [( #dmm.dd.yyyy)] if this is what you are try to plaace in the memo in the edit mode in designer
-
fr does not sort data, it only groups according to what you have presented to it. So you must do your sorting and calculating within your queries
-
after loading your report and before calling showreport or prepare set all the props for the export filter
-
"I am creating the richview at run time in code and it is located on a single masterdata " the rtf object gets its fonts from the rtf text you are supplying you could try turning off wyswyg to see if that makes a difference.
-
if it works for you yes. bear this in mind when working with memos and bands that stretch when you have memos placed vertically one above the other ie memo1 memo2 stretching memo3 memo4 it is better to place memo3&4 in a child band. als…
-
[SUM(
,MasterData1,2)]// the 2 is for running total if that doesn't work try the latest version 4.14.7 -
1 you should set the bounds of the band first, then rhe memos to the band or the memos may be orphand to the page. 2 the reason you need to set the rowcount of the band is you have not set the band,datasetproperty to connectit to data which will …
-
find the page first then add the band. C++: TfrxReportPage * Page; TfrxMasterData * DataBand; Page = (TfrxReportPage *)frxReport1.Pages[1]; DataBand = new TfrxMasterData(Page); DataBand->CreateUniqueName(); DataBand->DataSet…
-
"I have a system text object on a report with the following text/formula" in what band is this text object located ? must be correct footer, page footer or summary,
-
I think i Know where you are going wrong. when you load a report with some objects on it you must use the findobject method to be able to modify the object so you need to declare variables of the correct type then use the findobject methodto find …
-
please post your .fr3 file and your code for adding the bands and memos. BTW you can add as many child bands as you want you siply chain them by setting the childband of the next child to the childproperty of the first child.
-
what are the differences between development and installation environments ie windows system printers etc
-
You are doing something wrong Hint make sure you have the designer in your app. start with a small sample load your saved report into the designer frxreport1.loadfromfile('your filename.fr3'); add a memo to the band remember positions are in p…
-
NOTE Your code should run I expect the problem you are having is that you are not calling design report in the context of the tfrxreport component that has the obpevent code.
-
what version of fr are you running? internal code and events is not available in xe or basic versions. only standard and above.
-
read the programmers manual build a report from code. scoll tdown to c++ section