Jump to content

EddyRocha

Members
  • Posts

    17
  • Joined

  • Last visited

EddyRocha's Achievements

Newbie

Newbie (1/4)

0

Reputation

  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. you mean this part of the page? frxReport.EngineOptions.EnableThreadSafe := True; frxReport.EngineOptions.DestroyForms := False; remains as before
  3. 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);
  4. 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 ...
  5. 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? ...
  6. Thanks, works with uniGUIDialogs in uses list.
  7. 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
  8. Delphi Update 4 and hotfix? Because i already have the update
  9. i installed teechart, but the package require Tee.dcp but my component include the Tee916.dcp
  10. when I install packages only uniGUI16Chart can not be installed, displays the following message [DCC Fatal Error] uniGUI16Chart.dpk(35): E2202 Required package 'tee' not found
  11. I made an application with unigui (exe) and run successfully in desktop and in the web browser, but I want to convert it to dll to run on other machines, how I can do this?, There is some example?
×
×
  • Create New...