Avatar

rene

rene

About

Username
rene
Location
Prague, Czech Republic, Europe
Joined
Visits
0
Last Active
Roles
Members

Comments

  • rene wrote: I would like to know how to change the default color used in pie charts. OK, no answer - nevermind. my solution is in change of definition of object "TfrxPieSeriesHelper" in standard unit "frxChartHelpers" (OK, this is not the be…
  • Partial result: Looks like handling OnClickObject works good. At the moment I am able to change preview to SelectMode, let user to select/unselect each memo object and copy whole text from this objects (well I am also able to select/unselect all tex…
  • Quietman wrote: I did understand what you meant however I didn't want to suggest you looking at fixing a bug in Fast Reports.  Maybe I was not clear so: I did not think there is a bug in FR. My post were about "feature request" or "is it pos…
  • Ok. I solved my issue this way: Because even Component.IsDesigning nor Component.Report.Engine.Running was not the right way I have to redefine Report.OnRunDialog (well I had already some code in there) and look for all object of my *Special*Comb…
  • Quietman wrote: For small sections there is the Print Screen button on your keyboard.  I frequently do this export into Paint to cut only what I want then paste that directly into a Word document.  If you own PDF you probably could save the docu…
  • sange wrote: if you try find button to search text, you will be find text highlight if found. could we get the text to clipboard? Even this highlighted text couldn't be copied into clipboard. The only one solution is to enable users to edit…
  • soheil666omen wrote: My Problem is solved . May we know HOW?
  • First idea: If it has fixed length try to use Copy function like: var  mytext: string; ... { Handler: OnBeforePrint } begin  mytext := ;  mytext := Copy(mytext, 1, 2) + '-' + Copy(mytext, 3, 2) + '-' + Copy(mytext, 5, 2) + '-' + Copy(mytex…
  • mbsoft wrote: When authification is 'Yes' which username is valid. Users in users.xml or login/password in config.xml ? Maybe this should be in FastReport Studio forum. Or not? (rm)
    in users.xml Comment by rene June 2006
  • anmisoft wrote: I HAVE DESINGED A REPORT WITH RICHEDIT OBJECT. WHEN I RUN APPLICATION, AN ERROR IS SHOWNED: "CLASS TFRXRICHVIEW NOT FOUNT". ??HOW CAN I SOLVE THE PROBLEM? THANKS RTFM. You probably don't have frxRichObject component in you…
  • Note for FR developers: Please correct the manuals too ( FR manuals). Old approach is still compilable, but no longer functionable (I tried to write my first new component and because the developer manual was obsolete I was debugging totaly insane t…
  • Well, I have found some event at frxEngine: OnRunDialog(Page: TfrxDialogPage); This is not exactly the same, but helps me a little bit. Note: If you just want to do some action before and after dialog do not forget to call: Page.ShowModal;
  • well, you also can convert dfm by you own: convert -t -i a.dfm ... and after that delete D7 properties manually. (convert is Borland utility in $DELPHI_HOME/bin) btw. I have v3.14Pro and given export DFM is OK
  • And what about OnBeginPage / OnEndPage ???
  • If you have source code too, you can resave DFM in Delphi. Or try to delete them manually (if you have DFMs in text form -- but AFAIK FR3 installs with binary form of DFMs). Rene
  • IMHO property DesignSize of Forms is in Delphi7 (maybe D6 too) and upper, but not in Delphi5. So maybe you are using DFMs for D7 in D5. Rene
  • Juergen wrote: Hi, FR can print unicode with some small modificaton and restrictions. Juergen Hi, what modification you have on your mind? I'm also going to modify sources to support unicode and there is always place for good tips I…
  • Try write into DataSetName number in string DataBand.DataSetName := '1'; Or set RowCount
    in Single Row Comment by rene July 2005
  • Try to find out all FR bpls (Delphi and windows directory) and erase KnowPackages in Delphi registry section. Try again.
  • Solved. My problem was that first application used Compressor while second application did not. That's why simple solution is to use PreviewPages: frxReport.PrepareReport(True); frxPreview.Show; frxReport.PreviewPages.SaveToStream(FStream); ... frxR…
  • Hi Gord, thanks for quick reply. Because I wasn't sure if I catch your idea, I had tried several additional footers and childs (in both pages), but sad to say with no effect. Small workaround wich I'm temporarily using is replacing Child band …