gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Thanks Kevin notice the dates on the messages and the download. dl seems to be on 12/11 message before that date. interesting.
-
"Access Violation on RTL60.bpl", usually indicate that you had a bad install or the specific project has bad path info to fr files or old files being refrenced. usually happens when uninstalling older versions manually without using uninstaller.an…
-
have you tried setting the oldstyle progress property
-
in the previous example you can clear at the pictureviewlevel. pv.clear;
-
assuming a picture view object is some where in the report procedure TForm1.frxReport1BeforePrint(Sender: TfrxReportComponent); begin if Sender.Name='Picture1'then TfrxPictureView(Sender).Picture.loadfromfile('pathname+filename'); end;
-
frxreport1->Preparereport; frxReport1->ShowPreparedReport(); delete v;// this line is not accepted and leads to an error. of course as you are beyond the design stream after calling preparereport. the code i gave you assumes an empty pic…
-
the key lies in the orderby clause of the underlying query then use nested groups supplying the correct grouping condition for each groupheader. groupheaders and footers do not necessarily have to be visible unless you want them to be. ie select…
-
typically in obpevent of page or prior object use if then else block of code and control visible property of the objects ie if [tblname."fldname"] = somevalue then objectname.visible := true elses objectname.visible := false;
-
I am not sure what you are trying to acheive here. the no of rows of the data band is controled by the dataset to which it is connected. as the band is repeated the report engine checks the space available then starts a new page if required. Need…
-
Hi Marco make sure you set up your newsgroup account directly to newsgroups.fast-report.com not a general listing of newsgroups from an isp I have the same problems with gov pdf's as you do, however the problems may lie in copyright infringement a…
-
The whole class architeture has changed, read the whats new file, then the programmers manual and the user manual, and look at the demos.
-
memo1 contains [2 + 3] code in obp of band containing memos memo2.text := memo1.text; will display 5 in memo2
-
Hi this is your problem My data in bank is String format numbers(numbers saved in String Fields) just as in delphi you can't use numerical functions on string values. if you looked closer at the demos which work fine you would see that the unde…
-
here is a sample of i handle it in delphi you will have to translate to bcb new method for fr3 use a pictureview object instead. and the obp event of report component. procedure TForm1.frxReport1BeforePrint(Sender: TfrxReportComponent); begi…
-
the chartview does not need a dataset use either a summary or child or mdband set to rowcount of 1 no dataset the series the series allows you to use a dataset of which 2 fields may be used for x and y values or a band again the two items(memos)…
-
Need more info about series properties are you using data source or band source or fixed values. if you use band source and specify memos to be used and you hide any bands you will get incorrect results. seems like you aren't getting the other 1…
-
the differences are due to windows riched dll versions the frrichview is based on delphi's richview and it does not consider system version diffs you will get better results with the frrxrichview object.
-
the queries must be linked properly first query2 needs to be parametrized to use a value from query1.
-
AFAIK i have not seen this utility on this site. the converter is part of 2.53 or 2.54 just open .frf in fr2.5# designer and save as .fr3 file. NOTE That the converter does not export vertical "cross data bands" and many bits of generated code may…
-
IMHO this is a gigo problem if a control is not set properly to begin with you can't expect the exporter to Know what to do. There is also something to beware of when working with stretched memos in a band. ie band contains 2 memos one placed under…
-
Since you are using basic and have no access to the source code instead of using the checkbox use a textobject(memo) set its size and frame properties to suit your needs, set its font to wingdings, then you can adjust the font size to suit your ne…
-
see the example "fr3 and variables" posted in the public.binaries news group.
-
the checkbox uses the wingding font for the check mark what you can do is use a memo size it and use the wingding font cut and paste the character you want from character map then set a larger font size and write a bit of code to control visibili…
-
if you remove an empty procedure that was created by dblclick in the object inspector event tab, then you must remove that refrence also.
-
viewing a previously saved fp3 report frxreport1.Clear; frxreport1.PreviewPages.LoadFromFile('path+filename.fp3'); frxreport1.ShowPreparedReport;
-
create a memory stream save to stream then assign the stream to the blob field. stream := TMemoryStream.Create; TfrxReport.SaveToStream(stream); stream.Position := 0; (dataset.fieldByName('my_blob') as TBlobField).LoadFromStream(stream); rev…
-
see item 2.15. in faq text
-
see the main demo grouptotal in header example, and read the user manual chapters on aggregate functions.
-
if you are a registered user you should upgrade to 2.54, you are 8 versions behind
-
Since a group footer does not print until after all the records of the group have been presented you must use different methods 1 use the page footer band. 2 use a column footer band it will appear at bottom of evey page just above page footer. 3…