
gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
When you pass a string value to a categorized variable the value must end up with string delimiters or else it triggers the expression evaluator and if it cant resolve it, it then triggers the external ongetvalue event which means you cant previe…
-
on your customer dl page
-
Don't use the sum function. just add the vars within a set of () expression in a memo ( +)
-
use the copy function in the memos expression do not connect the memo to a datafvield. ie dataset.fieldname,from, count [Copy(, 1, 1)]
-
in which band is the memo containg that expression being used in? should be in footers
-
Set the bands column width, columngap and number of columns
-
why are you posting in this forum the report you sent was built with fr5.12
-
Post a copy of your .fr3 file here remember that the engine processes objects in the band from left to right in order of creation.
-
place a memo or a doted line object in an unattached child band use the engine.showbandmethod write codee to check the engines freespace and repeat the # of times the band shows note you will probably need a header and fotter band to have an appr…
-
Set memo's stretchmode property to smmaxheight.
-
it needs to be [IIF( (valueA > valueB); "true", "false")]
-
look at setting the printable property of the objects within the band
-
since you did not indicate any use of headers or footers in the obp event of the master band write code to set the engines cury prop ie if ( MOD 2 = 0) THEN ENGINE.CURY := VALUE YOU WANT ELSE ENGINE.CURY := ENGINE.CURY;
-
Hi howard happy to see you worked it out? interesting that when the memo contains just an expression it stretches but not when connected to a datafield. in that master band was the subreport created(added) before the memo?
-
HI HOWARD it appears to me that the top of the memo is set to 0, i think this might be outside of the master band top forget the above, try removing the sub report temporarily to see if you can get the memo to stretch also what is wordwrap set to
-
it could be it depends upon the type of report you ate ctrating a multi design page report you connect the report componrnt to a data set to tell it the number of times to run in most others you connect the dataset to a masterdata band, detail, an…
-
sincw you did not post your .fr3 file can't say for sure but you probably have the tfrxreport component connected to a data set
-
Tor sample Can i access to dataset fields with an index ? to frxDataset.Fields var i: Integer; ds: TfrxDataSet; list: TStringList; ds := Report.GetDataset('frxDBDataSet1'); list := TStringList.Create; ds.GetFieldList(list); fo…
-
When using nested groups you must have the order by clause of the query supplying the data in the same order as the headers fr does not sort for you
-
requested a copy of .fp3 file out put before exporting pdf is useless
-
Post a copy of your .fr3 file and a copy of your saved output file .fp3 here
-
remove older versions using frs uninstall install fr version for the newest version of delphi then use the fr recompiler to select the other compiler version and recompile this will be required for each version of delphi and will create the fr lib…
-
I would check your datasets record count befor calling before calling prepare report and exporting
-
i assume that you are running and exporting the report from code correct? if so then show the code where you are loading and running the report and setting up the export filter.
-
show your expression please.
-
actually you can do most of that now sample changing all the memo's font or sizes in a band select the band right right click and select select all then move to the font tool bar and select your size all will change.
-
You only connect the report component to a dataset when you are creating multi design page reports
-
are you talking about not enough size when desigining
-
when designing the font property of the objects can be set to any installed font. memo objects can also inherit the font property of their parent
-
make sure that the masterdataband is connected to the data set and startnewpage prop is set to false and that the tfrx report is not connected to the data set