Problem with fr3 filters and pragnaan question

Hi,

I'm trying fr3 with their filters and I can't save any fr3 file like a pdf
or rtf or other.

I'm droping all fr3 filters and when I execute frxPreview.SaveToFile method
or when I execute frxPreview.DesignReport and click over the save button -->
I see in the combo filters only the *.fp3 filter.

What I missing and doing wrong???


Other question:

I d'ont try Pragnaan filters, can any body say me what it's best: FR3
filters or Pragnaan vers.3 filters???

TIA

S.Barco



Comments

  • edited 4:27AM
    Hmmm... Don't you see the "Export" button on the preview toolbar?
  • edited 4:27AM
    I make the following steps:

    - Create a new project
    - In the Form1, drop: frxReport, frxDesigner, OpenDialog and 2 buttons (btNew, btShow).
    - In the Form2, drop a frxPreview and set Align to Client.
    - then write the onclick procedures
    procedure TForm1.btNewClick(Sender: TObject);
    begin
      frxReport1.DesignReport;
    end;
    
    procedure TForm1.btShowClick(Sender: TObject);
    begin
      if Opendialog1.Execute then
        begin
          frxReport1.Preview := Form2.frxPreview1;
          frxReport1.LoadFromFile(opendialog1.FileName);
          frxreport1.ShowReport;
          Form2.ShowModal;
        end;
    end;
    

    When I show Form2 (with have frxPreview component) I can't see any buttons and I'm sure there are true all buttons_preview_options in frxReport1.

    What can i do? What's the problem?

    And about the other cuestion (export pragnaan)?

    Thanks.
  • edited 4:27AM
    TfrxPreview does not show any buttons. You have to write own toolbar and call TfrxPreview methods.
  • edited 4:27AM
    Thanxxx Alex

Leave a Comment