Jump to content

Quickreport


flaviowmf

Recommended Posts

Demo application, as promised.

 

There are mainly two small things to keep in mind. Do not have the application auto create the quick report form. When you add the form, go into the project settings and remove the form from the autocreate list.

Secondly you need to disable the progressindicator from the report as it doesn't make sense in webmode. (TQuickRep.ShowProgress := False)

 

 

Thanks

Link to comment
Share on other sites

  • Replies 54
  • Created
  • Last Reply

Top Posters In This Topic

Demo application, as promised.

 

There are mainly two small things to keep in mind. Do not have the application auto create the quick report form. When you add the form, go into the project settings and remove the form from the autocreate list.

Secondly you need to disable the progressindicator from the report as it doesn't make sense in webmode. (TQuickRep.ShowProgress := False)

 

 

Dude, your source blz can not compile, missing some units of the error, but c'mon, I did exactly as was his source and appreciate me a message telling me that the creator must be a form uniaplication

Link to comment
Share on other sites

  • 2 weeks later...
  • 2 months later...

Demo application, as promised.

 

There are mainly two small things to keep in mind. Do not have the application auto create the quick report form. When you add the form, go into the project settings and remove the form from the autocreate list.

Secondly you need to disable the progressindicator from the report as it doesn't make sense in webmode. (TQuickRep.ShowProgress := False)

 

Thank you, how can I do to run on ISAPI?

Link to comment
Share on other sites

The problem is that you need for the IIS user to be able to access any printer service that there might exist on the system. Whether this is a matter of just giving the IIS user access to printer services, I am not sure. Also a problem might exist for virtual machines with no real printer attached to it.

 

I have not investigated any solution to this yet, but if I find one I will post it.

Link to comment
Share on other sites

  • 1 year later...
  • 6 months later...

use Quick report v.5.0.5, unigui 93.xx. I can export data perfectly  to PDF with the project type to  2 (VCL Application / Standalone Server / Isapi Module).
I use this code :
 
procedure TMainForm.UniSpeedButton2Click(Sender: TObject);
var
  ViewPDF: TFormQR;
  GeneratePDF: TQRPDFDocumentFilter;
begin
 ViewPDF := TFormQR.Create(Uniapplication); // can't using self or nil
  try
    GeneratePDF := TQRPDFDocumentFilter.Create(UniServerModule.LocalCachePath + 'Coloring.pdf');
    ViewPDF.QuickRep.ExportToFilter( GeneratePDF);
    UniURLFrame1.URL := UniServerModule.LocalCacheURL + 'Coloring.pdf';
  finally
    GeneratePDF.Free;
    ViewPDF.Free;
  end;
end;
 
 
But when I do project using options to 3 (isapi module), no error, no export proceeds. I do not know why it is like this, there may be advance  who  have this kind of experience?

Link to comment
Share on other sites

I use FastReport when making MODULE ISAPI applications are no constraints on the subordinate component FastReport (frxXLSExport). mine for Applications with VCL Application / Stanalone Server / ISAPI module running smoothly and quickly

 

Link to comment
Share on other sites

  • 2 weeks later...

Hello 

 

I am using QuickReport with no problem (by now  :D),

 

In design time I create and add to project a standard delphi form (not UNi) and put in this form the report. I create an instance of this form on runtime.

 

I put data (from my database, images, etc...) in the report then I export it to pdf. Then I kill the report form and show the generated pdf in a urlframe or in a new nevigator page.

 

If you want sample please ask...

Link to comment
Share on other sites

  • 5 months later...

Hello All,

I Use ISAPI Mode( IIS7 ) and use the sample code from Anders Andersen ,when I run the export function ,program crashed and browser displayed the following message: 

 

Invalid session or session Timeout.

Restart application

 

 

 

I found that if I use a blank report form,system can export a blank pdf file normally 

, but when I added a report band and QRLabel to the report form, problem occoured ,Please help

Link to comment
Share on other sites

  • 3 years later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...