Default Avatar

Selmeyer

Selmeyer

About

Username
Selmeyer
Joined
Visits
0
Last Active
Roles
Members

Comments

  • Perhaps its the TOP porperty.   lBand := TfrxPageHeader.Create(aPage);   lBand.CreateUniqueName;   lBand.Top := 0;   lDataBand := TfrxMasterData.Create(aPage);   lDataBand.CreateUniqueName;   lDataband.Top := 1; on your code, I …
  • I don't know about creating Chart from FR Script but I know Chart.AddSeries works if you call it from Delphi   Chart2 := TfrxChartView.Create(GroupFooter1);   Chart2.Name := 'MyChart';   Chart2.SetBounds(10,110,125,125);   Chart2.AddSer…
  • Thanks Madas, I'm using a TfrxPreview to Show the report. it is on the TfrxPreview that the UserFunction does not work after showing Designer. Sorry I didn't mention this, I didn't know that a report can be shown without a preview [img]st…
  • I still need help on this problem, could any one give me some advise ? is this a fast report bug ?
  • Pedro Sousa e Faro wrote: » Hi I have the folowing code in master data if Copy(, 1, 1) = '1' then Set('diaria','X') else Set('diaria',' ') ; diaria is a variable that i create in Fr' variables It may be a simple question , …
  • What do you mean it does not show, The MasterData Band does not show Data from Database ? or some part (image/Text) from the RTF not showing ?
  • hxg wrote: » After 2 days "playing" around with FR I'm sorry, my patience is over [img]style_emoticons/<#EMO_DIR#>/mad.gif" style="vertical-align:middle" emoid="" border="0" alt="mad.gif" /> FR seems to be a very powerful tool, but the …
  • madas wrote: » Try this:   begin     frxReport1.AddFunction( 'Procedure MyFunction' );     frxReport1.OnUserFunction := frxReport1UserFunction;   end;   function TForm2.frxReport1UserFunction(const MethodName: string; var Para…