gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Glen this is your key " I am attempting to format a cheque that has three parts" re think your design i assume you are using preprinted micr bank cheque forms. you do not want to use bands you want to use one design page with text objects in se…
-
it is because the expression you are using is invalid it is telling you at what position it expects to see the ). and the use of [] is also invalid, and the aggregate is not available until the footer is handled. one also must take great care when…
-
i suspect that you dont have the tfrxreportcomponent dataset prop set to a dataset that tells the report the number of times to run.
-
questions where is code located and in what event does this only happen when running from ide or at runtime as well?
-
which file are you refering to the .fr3 or the pdf.
-
after loading the report and before calling showreport check the enabled datasets.
-
i understand that, i want to know definetly which version of fr you are working with.
-
1 title band prints on first page only so this seems to be odd. normal would be masterband childband with subreport for detail1 or a detail set to 1 record and not connected to a dataset. childband with subreport for detail2 you should post in …
-
IIRC yes from obp event of reportcomponent. something like if sender.name = 'Richedit1' then begin tfrxrichview.sender.richedit.loadfromstream(mystream) end;
-
download the lates release it has been fixed.
-
you should take out a support ticket and give as much info as you can about what is missing. also version and build number you are using.
-
try the latest version from your dl page 4.7.3 is now listed as stable version.
-
1 you are in the wrong forum you should be in the studio forum. 2 did you download the password from your customer dl page. if you did step 2 go to your dl page click support and take out a support ticket give them as much info as you can about t…
-
I havent tried using a tcollection to supply data to an frxuserdataset. but for sure you will need to write code for each of the events of the frxuserdatasets to control movement in the dataset. onfirst, on next, on prior, and on eof. and ranges …
-
Your not very clear where are you trying to do it from delphi code or code in the report. in the report use the obp event of the band that contains the pictureview. typically if (somecondition = true) then picture1.left := doubleprecision value…
-
as a minimum i would suggest fr4 pro that way you have source code and can take advantage of being able to get daily builds.
-
IIRC free report does not handle multipage rtfs to do this you need to use fr3 or fr4.
-
i would expect a problem depending upon the script language that was used in the report when it was designed.
-
not clear what you are asking here. page(paper) orientation is a property of the design page. it can be set in run time after report is loaded and before the report is run, once it is set it remains for the life of the report.
-
not a c person but here is how i handled it in delphi. you must have a designer component included in your project and you do it at run time not from the ide. typically set the open and save dir paths of the designer component to differnt fold…
-
need more information?
-
not clear what you are trying to do.
-
to work with code inside the report you must use standard (no source code so you can't recompile to latest daily build) or above prof includes source code, enterprise includes server components.
-
add code to the obp event of the footer band to set the left position of the memo view that contains the page number. if ( mod 2) then memoname.left := value else memoname.left := other value;
-
the error you are getting when running in the ide by clicking preview usually occurs if you are using any external run time report component events, such as obp, ogv or ouf of the report component.
-
Data connections is controlled at the data level while you make it available through the frxdbdataset components interelations master/detail/subdetail is actually handled at the table level. a databand is only controling the opening and closing an…
-
this is a situation that is caused by using keep together and allowsplit and stretch. IMHO you cannot use all 3 together as one attempts to override the other. what is probably happening is record 3 of group 3 is stretching just enough to cause al…
-
look in the binaries newsgroup. at my latest reply.
-
from the fr3 you posted i still see the masterdatabands dataset property set to the dataset. the sample code and dialog from the demo should be ok for the skip portion. without data i can't test your data portion. the only reason i was able to mo…
-
look at the reports in the main demo under basic reports neste groups and masterdetail subdetail. they connect to data(query,tables) using frxdbdatasets in the datamodule. while data bands use names of master detail don't let that fool you, bands…