Default Avatar

gordk

gordk

About

Username
gordk
Location
St.Catherines On. Canada.
Joined
Visits
0
Last Active
Roles
FR Team

Comments

  • Henryk i havent worked with version 2.xx in a long time now, but IIRC you can set the report component options convertnulls to false then you can test for nulls
  • the demo is still in the binaries example pageorder in a multi page report, posted by den on 8/4/2006
  • did you set printoptions collate to true?
  • if your database is tdataset compliant use the tfrxdbdataset component. if you want to have tables and queries and database connections contained within the report then you must either write a set of custom database components(see the developers ma…
  • you need to create a multi design page report, IIRC there is a couple of demos in the binaries newsgroup.
  • IIRC, I expect that is the problem as the MS riched.dlls are different between xp and vista.
  • when you set a page to have more than one column you only need to add bands and theirobjects in the first column making sure that the objects within the band don't exceed the width of the column. when the report runs the engine will create records…
  • dbcrosstab has a dataset property , cellfields property rowfields property etc.. data for chart belongs to the series.
  • after prepare report try frxreport1.previewpages.count. when using the custompreview if you want to have a toolbar you need to create it.
  • Al what version of widows is it running on and what version was it compiled with?
  • Bruce Check the stretch setting of the rtfmemo and the stretch and allowsplit settings of the band which contains the rtfmemo.
  • whoops try richview.richedit.lines.loadfromfile();
  • in most cases a report produced in 3.07 can be read and run in 3.09, or you could just open in design mode and click save as. It always amazes me that when updates within a version are free many don't update! you have a bigger problem converting …
  • Bruce in stead of all the manipulation where you are only handling the strings into text. try richviw.richedit.loadfromfile('path&filename'); docs can be found on product page under downloads.
  • the structure of fr either 3 or 4 is not the same as fr2. IIRC try using objects.count in fr2.
  • set the visible property of the imageviews in the obp event of the band containing the image view or in the obp event of the image view.
  • this does not make sense, it is like saying my customer has a project created in delphi7 and i want to maintain it in delph3. if you are maintaining a project's reports that uses a newer version of fr you should be using that version
  • Steve read the programmers manual on creating and working with variables. you can create 2 kinds categorized or script. secondly you may want to update current veris 4.6.82
  • it is a limitation of the export rtf objects are exported as bmps. see the user manual for limitations of the export filters
  • no a .fp3 file is a saved output file only.
  • IMHO showreport should only be called once only it prepares the entire report.
  • Perhaps crosstab. run the main demo and look at the various crosstab reports, should give you some ideas.
  • you should not be calling prepare report before entering design mode.
  • you can use the shorter form no need to call the engine. procedure Memo22OnBeforePrint(Sender: TfrxComponent); begin memo22.visible :=( = 1); end; the empty Begin End. block at the bottom of the code page can be used to initialize variables, …
  • first memo22 is not a text object it is a tfrxmemoview object which has a memo property which is a stringlist of text. the error is directing you to line3 character14 as the best bet as to where the error is. i suspect your error is in the code in…
  • check the binaries news group there may be something there. also check the zeos news groups and site.
  • a memoview supports a limited number of html tags see the user manual creating reports htmltags in the text object. or use an rtf memoview.
  • it is not a simple task, it is not as much about adding a pictureview on the fly but where and when to print a particular picture view object and perhaps size it. Probably place a pictureview object in an unattached childband the band can be made t…
  • read what the error says Format '%2.2n' invalid or incompatible with argument. qty is probably an integer value an therefore the format is incorrect. you probably could have used vartostr(expression). also make sure you do not have a null value.…
  • Assuming the following has already happened .... frxReport.PrepareReport; frxReport.ShowPreparedReport; // you are no longer in delphi you are now in the report the preview is the active window and you will not return to delphi until the previe…