gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
If you use a custom preview and write your own handler to select page it can be done. regards
-
Some properties belong to chart some to chart options sub pagenumber.chartobjname for c c.LegendObj := 'Memo2'; // string vals required c.ValueObj := 'Memo6'; //c.Top10Label := ''; // takes a string c.ChartOptions.ChartType := 3;//actually by…
-
Hi your question is somewhat vague, please explain what you are trying to do. regards
-
Hi a variable is affected each time it is processed, so when you use 2pass report, to gather info on the first pass to be used on the second or final pass, code must be written using if finalpass then or if not finalpass then blocks where necessary…
-
Hi if you want reporttitle after page header us a child band set pgheader child prop to the child. in obp event of page header write code to control visibility of child band if [Page#] = 1 then childname.visible := true else childname.visible := f…
-
Hi yes use an onbeforeprint event and assign the tchart to the frchartobject. regards
-
Hi Try this make report 2pass, in script of memo which is in the same band,but processed after the memo in question, gather width info of memo in an array, then in obpevent of band use if finalpass statement to use the array value to calculate and …
-
you can do several differnt things first you can set display format for memo object to number and select separator and number of decimals. the memo could then contain [var or field] km since memos can contain both variables and static text. or b…
-
yes bandname.datasource := val; regards
-
try setting breaked property to true. regards
-
good morning rather than trying to use 3 detail bands, use child bands and chain the childbands together. or nest the subreps within the subreps. regards
-
Hi need more info. are these subreports all in the same band? ie side by side. setting stretch of band and subrepobject has no effect. stretching must be set within the objects and bands of each subreport page, as well as memo positioning and l…
-
Hi most of the items in the powerpack for 2.47 will work with 2.51 like added functions some require changes in dpk files to suit delph1 version, frversion, or product versions if you are using newer versions of a specific 3rd party library. IIR…
-
Hi see my reply to the same question in yahoo group also message 7946 in same group regards
-
Hi IIRC you cannot modify the fr.inc file in the demo therefore you cannot recompile the lib to have the frrxrichedit control. regards
-
hi did you place an frrtf object on underlying delphi form. regards
-
Hi Save a basic report as a template .frt file open it when you start design Also look at what happens in the ide if you dblclick on report component and when designer opens goto file>new regards
-
Hi Otzi add a boolean variable set it's value to false at start of report, in obp of master set it to true, reset it to false in a detail footer. test it in obp of pageheader and if true try calling showband there. I usually add a child band at…
-
Hi Otzi check each variable first to make sure your values are passed in correctly, if they are try varTime]*[varPersonRate regards
-
Hi make sure that any necessary fr add in objects are placed on the underlying delphi form if you are using them. ie exportfilters,frshape,checkbox, barcode, etc. Also make sure that a report is not set to select a non existent printer when loaded…
-
what is version1 that you are refering to? IIRC fr went from 2 up to 2.51 regards
-
Hi otzi if you are talking about an fr dialog form, in the onclick event of the button initialize a variable to whatever ie. myvarname := edit1.txt. regards
-
Hi Suggest re reading documentation, take time to run the demos provided they cover 95% of what is usually required. In design mode goto file>report options set 2 pass option. 2 pass forces the report engine to make 2 passes before displaying…
-
Hi first to get total pages report must be 2 pass. when summing or counting use correct syntax ie box with "[SUM(F5)]"should look like [Sum([F5],bandname,1)] note ,1 is optional it retrieves non visible values. when you want to retreive the va…
-
Hi Ibego "When I use BeforePrint then I need to Know the Name of the FrView-Object, and I cannot insert two more in the Report.", only when working externally. Try working from the script of the pictureview objects memo to do your actual loading …
-
hi turn band align by setting to none. regards
-
Hi d3 does not have that property for components try click on ignore when prompted. regards
-
hi Henry here is the link to the group you have to join to be able to dl http://groups.yahoo.com/group/fastreport regards
-
Hi try building you expression using the expression builder it will get your brackets correct for you. to retreive the value of a data field it must be enclosed in square [] brackets. ie sum of fields across row displayed in memo at right of the…
-
hi unless this was a typo QRY. VLR_P " ]+ [QRY. VLR_R " ]+ [QRY. VLR_V " shpold be QRY. "VLR_P " ]+ [QRY. "VLR_R " ]+ [QRY. "VLR_V " regards