Jump to content

EddyRocha

Members
  • Posts

    17
  • Joined

  • Last visited

Posts posted by EddyRocha

  1. The problem starts when I add the band master, VCL application that if it works but in the WEB goes down, and modify the report in several ways and does not work on WEB (only the first time), as I mention it only works with the VCL application, which I did for now to give a solution was to create an exe that includes the code of the report, receive parameters and generates a PDF, the web application call the exe, sends parameters and displays the PDF (generated by exe), I don't like but I don't know what else to do...

  2. I haven't faced any problem with FastReport. Works Fine.

     

    I used Datamodule as placeholder for FrxPdfExport, frxRichObject,.......

     

    in the MainForm, just create the datamodule

    FrTools := TDataFrTools.Create(UniApplication);

     

    FrxReport component I used to put in Forms.

     

    Regards.

     

     

    in the dll i can't create a in code, because the dll generate automatically the datamodule or forms...

     

    when i try this, not compile

     

    // dmReporte := TdmReporte.Create(UniApplication);

  3. My Code:

    UniServerModule.Logger.AddLog('info','1');

    frxReport1 := TfrxReport.Create(self);

    frxPDFExport1 := TfrxPDFExport.Create(self);

    frxRichObject1 := TfrxRichObject.Create(self);

     

    UniServerModule.Logger.AddLog('info',UniMainModule.Ruta+'Contenedores.fr3');

    UniServerModule.Logger.AddLog('info','2');

     

    frxReport1.LoadFromFile(UniMainModule.Ruta+'Contenedores.fr3') ;

    UniServerModule.Logger.AddLog('info','3');

    frxReport1.PrintOptions.ShowDialog := False;

    frxReport1.ShowProgress:=false;

    frxReport1.PrintOptions.ShowDialog:=false;

    frxReport1.EngineOptions.SilentMode:=True;

    UniServerModule.Logger.AddLog('info','4');

     

     

     

    and the log:

     

     

    ContenedoresWEB: 00001908: 16:20:24 [info]:1

    ContenedoresWEB: 00001908: 16:20:24 [info]:C:\xampp\htdocs\Contenedores.fr3

    ContenedoresWEB: 00001908: 16:20:24 [info]:2

    ContenedoresWEB: 00001908: 16:20:24 [info]:3

    ContenedoresWEB: 00001908: 16:20:24 [info]:4

    ContenedoresWEB: 00001908: 16:20:25 [info]:5

    ContenedoresWEB: 00001908: 16:20:25 [info]:6

    ContenedoresWEB: 00001908: 16:20:25 [info]:7

    ContenedoresWEB: 00001908: 16:20:25 [info]:8

    ContenedoresWEB: 00001908: 16:20:25 [info]:9

    ContenedoresWEB: 00001908: 16:20:25 [info]:10

    ContenedoresWEB: 000016D4: 16:20:33 [info]:1

    ContenedoresWEB: 000016D4: 16:20:33 [info]:C:\xampp\htdocs\Contenedores.fr3

    ContenedoresWEB: 000016D4: 16:20:33 [info]:2

     

    I could see the error is generated in step 2, where the file fr3 is assigned to the component of the report, but I don´t know why ...

  4. now i work with non visual components, the detail that it works fine the first time, send the pdf correctly, but if I try several times, the second time fails or until the fifth, then it does nothing, it is like dataset is disconnected, because I try to change of record and does not work, but does not generate any error in the log...

     

    one more thing, if I run the application with the option localhost everything works fine, no matter how many times I try, but if done through the dll on the server is when the problems are generated... I will have to change something in the configuration of apache? ...

  5. i have a problem with fast report, when i enter the first time the system seems to work fine, but when I close the application and try enter again, the system can't run (show the cursor like charging), only if i restart the apache service i can enter again, but the same happens again, other applications that don't use Fast Report not have this issue...

     

     

    I check the log file, but does not create any messages...

     

     

    i try with quickreport and the log file show me the error:

    [HttpExtensionProc]:EConvertError : Cannot assign a nil to a TFont

×
×
  • Create New...