gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
jbarker wrote: » I've just discovered that the position values in the design-time property editor are in centremeters (I guess it would be inches if you're using the imperial system), but at runtime they use pixels. I was trying to adjust the Lef…
-
that is fine for record counts of datasets, but will not give you pages and totals of values, particularly if dataset rowheight is stretching
-
That was what i did also. What i was trying to say was in relation to the updating if he is updating the project why update to such an old version of fr4? Waiting to see the .fr3 file.
-
Sorry Anu "HANG ON a minute! isn't it that you need to use?" No Page is an fr system variable so = 1 is a valid expression.
-
probably should have been wordpad versus note pad.
-
this draw bit is throwing me? are you working with some ones limited designer(third party)? or a full version of fr 4 delphi. using fr4 s designer you would select the tfrxmemo view object from the tool bar drop it on the page and you would go into…
-
[IIF(=1,'Test1','Test2')] works fine here tfrxmemoview placed on a page and contains the above expression. BTW "4.2.68" it always amazes me why one works with versions so far out of date when updates are free. current build is fr4.10.11 make su…
-
the syntax [iff(condition is true,truevalue,falsevalue)] is correct for use in a memoview's memo and works fine. so make sure you set the memo visible [IIF(=1,'Test1','Test2')] also in some cases you may need to add () around the test condition…
-
read the user manual chapter on script printing the group's sum total in the groups header. use the same principle
-
make report 2 pass, gather values on first pass sub into objects on second pass. see the main demo totals in header report for hoe to do it.
-
finish your statement with the else part. to reset the filelink to nil if condition is not met on next iteration,
-
Sorry i got tied up on other buisness. here are the mods to the code. this is all in the report code page. var ds: TfrxDataSet; procedure Page1OnBeforePrint(Sender: TfrxComponent); begin if ds.recordcount > 4 then begin ds.first; mas…
-
the main piece of the code for the dataset is placed in the empty begin end. block of the code page as was stated. it is the first script to be processed.
-
you answered your own question you should be in the same form as the tfrxreport component. or you must store reports in a file and call load report from file method or stream etc. typical myform.frxreport1.loadfromfile('pathandfilename.fr3'); // …
-
since you are not saving the report to file you won't be loading it. typical call to access the report page from the programmers manual. var Page: tfrxreportpage; Page := TfrxReportPage(frxReport1.Pages[1]); your code CertificatePage := FrmCert…
-
have you loaded the report into the tfrxcomponent first
-
in the xml pages you created did you set the correct code page for the language.
-
Yes read the usermanual chapter on using the engine object to modify curx cur y position of the engine.
-
What op sys and have you granted all required permissions?
-
the sample code i gave you and events mentioned are all in the report and script . design page 1 probably page header for fixed position memos large height masterdataband1 set for fixed num of rows page footer for fixed position memos below ar…
-
it is not too dificult just re-think your situation. do not use groupheaders footers. and do not connect the databand on design page 1 to a dataset. control the dataset from code and set the rowcount property of the databand. use tables or querie…
-
the find object method for a report is used from delphi. Usually after loading the report and before calling show report. but it may be used in other events of the tfrxreport component it requires a string parameter to find the object by it's nam…
-
"The issue is this: I am *replicating* the form for a canada customs invoice. This form's first page is different from every other page that follows." what is the form number and i'll dl and take a look better yet zip and send the images you are u…
-
spacemanspiff wrote: » Hi, I am very new to reporting and were looking for a reporting tool that allows me to insert my TeeChart into reports. I do own Delphi 2010 Professional, TeeChart 2009 Standard and downloaded the FR4 Trial and some gu…
-
i would expect it is due to the fact that the lq-2090 is a dotmatrix printer and you have not designed a dotmatrix report.
-
I can't work out what you are trying to explain are you talking about design pages or output pages? gov forms are usually 1 set design page of many fields on a pre printed forms with a number of copies required. or are you trying to control a mul…
-
what you need to do is to control output by controling the curx cury of the report engine read the user manual on using the engine object.
-
please when you want help tell us what version number and build no of fr you are using. you have a band property with a wrong setting in your report. if you can place a sample demo in the binaries news group and ill take a look at it.
-
can you post a small sample demo in the binaries news group?
-
It is not clear what you are trying to do on the design page the top of the memo object is the amount down from the top of the band. it has no reference to the position on the output page, the report engine is controlling that depending upon what …