gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
are you saving the report design file as a .fr3 or storing it in the dfm?
-
What windows system are you running under and are you delphi or c
-
your first mistake was connecting the tfrxreport component to a dataset, this is usually used in multi designpage reports to tell the number of times to run the report. procedure Picture1OnBeforePrint(Sender: TfrxComponent); begin //TfrxPictur…
-
read the chapter on custom functions in the developers manual
-
Kenny disregard my last post. Can you compile and run frs main demo?
-
Kenny this is just a guess Unit_XMLParser in 'Unit_XMLParser.pas' this appears to be an entry in the dpr file it should probably be just xmlparser added to the uses clause of a form. the other possibility is that your pas files in the shared l…
-
for your group header in it's obp event write code to check the engine cury and if > than a certain value call engine.newpage
-
since your datafield only contains file locations create a variable and connect it to the datafield that has your file info. in the obp event of the pictureview object or the band that contains the pictureview, write code to load from file. ie p…
-
did you add the frxADOComponents to your uses clause
-
if you are using a page header band write code in the oap event of the page header to set the engine cury to the height you want if grater than page 1. if you are not, add a 0 height page header so you will have the event available. read the user …
-
As the error states You cannot have the report.dataset property and the page.dataset property pointing to the same dataset. the report.dataset property is usually used with multi design page reports and controls the number of times the report is p…
-
Here is a sample using the summary band. just sub your footer band name to suit. procedure ReportSummary1OnBeforePrint(Sender: TfrxComponent); begin if engine.freespace > reportsummary1.height then begin Engine.CurY := Engine.PageHeight …
-
i'll repostit to the binaries news group shortly.
-
set the stretchmode property of the memoview
-
try [(()*())] or try using frs built in expression builder to get your brackets in correct position.
-
turn on the memoviews frame bottomline
-
write code in the obp event of the page header to set the visible property of the rtfmemo. ie rtfmemoname.visible := = 1;
-
"No problem as I use a groupheader and set the condition to div 10." this seems like an impossible condition for a group header. the codition of a group header is usually set to a value of some field of the record's being displayed I would try …
-
obvious you answered your own question. you must supply rtf formatted text to the tfrxrichview memo.
-
The tfrxuserdataset and its events belong on the delphi form not in the report the report. Look at the masterdetail uds demo in your fastreport 4/demos folder.
-
did you set the stretch properety of the band and wordwrap of the memo ?
-
a lot will depend upon what comes before the bottom of the page and if the bands are stretching or not. the basic is to use an unattached child band. write code in the oap event of the preceding band to call engine.showband(bandname); it may be a…
-
look at the main demo's crosstab reports this may suit what you are trying to do.
-
if everthing runs fine at runtime as you state you probably have something that needs to acess delphi code this can not be done when in design mode by clicking on menu>file>preview as there is no acess to the delphi code.
-
look in your Fastreports 4\source folfer for converterrrtofr.pas this should be added to your projects uses clause you can then open rr reports in the designer. IMHO i would also update your fr4 to the latest build on your dlpage.
-
"-summary (aligned to bottom, just on top of the pagefooter)" procedure ReportSummary1OnBeforePrint(Sender: TfrxComponent); begin if engine.freespace > reportsummary1.height then begin Engine.CurY := Engine.PageHeight -reportsummary1.he…
-
begin if = -1 then '-/- ' \\ i expect this string is what is causing the problem in any code written else ; end. run the report, get the errormessage : "Script Error at 3:3:';' expected since i see a period after end it appears you hav…
-
bad syntax. should be [IIF( = -1),'-/-',]
-
I used to connect through a frxDBDataset which was connected to an Dataset in V2.56 and it worked fine. actually it was frDBDataset in version 2.56. it will be a tfrxDBDataset for fr4. you only need special data components if you are creating rep…
-
sounds like permissons settings for windows are not correct