gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
What do you mean by not completely printed? it either prints or it doesn't no inbetween, unless you have not set the band stretch and the memoview stretchmode props, and your text is larger than the memoview.
-
did you add the rtf object from the component palette to the underlying form.
-
// if working with a previously created report load the report first frxreport1.Clear; frxreport1.DataSets.Add(frxdbdataset1); frxreport1.DesignReport;
-
don't keep adding export components either from the tool palette or by creating in code. or you will see duplicates. they are global to the preview.
-
Objects??? coordinates and sizes are set in pixels. Since the ?«Left,?» ?«Top,?» ?«Width,?» and ?«Height?» properties of all objects have the ?«Extended?» type, you can point out non-integer values. The following constants are defined for convert…
-
the same dataset should not be connected to the report and the band.
-
first You appear to be posting in the wrong forum. Which product are you using ? fr4 for delphi and c or fr4.net Also this appears to be bad code for fr4 for delphi self.frxReport1.LoadFromFile('dayend_report.frx'); why the self, normally you w…
-
don't keep adding export components.
-
add a child band with a subreport
-
Look in your \fastreport 4\demo folder
-
do it at the top not the bottom, incease the space between the band top and the top of the memoviews shift the memos tops down
-
white space is created by making the band height greater than the memoview height.
-
you state the error is in the footer but your code shows you are in the obp event of the page. note the obp event of the page only fires once at the start of the designpage being processed not for each page produced. What exactly is it that you ar…
-
run the main demo and under other features see the url and anchors report. read the descriptive blurb before looking at the report.
-
you can't find it because you are using external data sets not internal datasets. connect your sql queries by setting the properties in your sql component.
-
if the memoview's parentfont property is set to true you only need to set the bands font size to change all the memos within a band. and to go a step further if the band's parentfont property is set to true you can modify all by changing the page…
-
in the report script write code in the masterband's obp event to change the text of the memo. ie if = True then memo1.text := '[datasetname."fieldname1"]' else memo1.text := '[datsetname."Fieldname2"]';
-
use the OnStart Report event.
-
from the programmers manual you m7ust use extra delimiters when passing string values. frxReport1.Variables := '''' + 'test' + ''''; also please note you are postiing in the wrong forum, you should be in the fr3 forum.
-
in design mode try selecting each of the cells in the design matrix and set the rtl property to true.
-
Darcy this bit should have been at the begining of the sample var colmin : TfrxArray; procedure Cross1OnPrintCell(Memo: TfrxMemoView; RowIndex, ColumnIndex, CellIndex: Integer; RowValues, ColumnValues, Value: Variant); IIRC not all of the p…
-
set the band column property not the page column
-
darcy here is sample of delphi code in the report to modify the cell. make report 2 pass load values into array then set the color on the final pass. sorry i am not a c programmer but you should be able to conver. begin if engine.finalpass the…
-
you must add the frxbde components to your project from the palette or in the uses clause add frxBDEComponents
-
it will depend upon where you want the sub report to start showing a typical example would be a detail band set to a row count of 1 and not connected to a dataset. or a child band. You will probably find you don't want to use the summary band.
-
make sure you have added the export component to the underlying delphi form.
-
create the array in the empty begin end block of the code page you can then access it from any report code page event IE ar[0] := 1; var ar: TfrxArray; Begin ar := TfrxArray.Create; end.
-
Assuming you have Pro or Higher. Remove any installed versions using frs uninstaller. then remove any stray bpls dcus etc, then delete the c:\Program Files\FastReports\FastReport 4 folder install the version for delphi 2010. then use fr's recompi…
-
Check to make sure that your data does not contain records which are empty in the fields in the mdband memos and may contain blank spaces in the group header condition fields.
-
set the showdialog property of the export component to false.