Jump to content

rencarnacion

uniGUI Subscriber
  • Posts

    633
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by rencarnacion

  1. I don't see any reason to upgrade to XE7 I think is Madness of Embarcadero !!
  2. Hello, I tried to install in Delphi XE7 and I got these error [dcc32 Fatal Error] MsSearchGrid.dpk(36): F2048 Bad unit format: 'MsUniSearchGrid.dcu' - Expected version: 27.0, Windows Unicode(x86) Found version: 27.0, Windows Unicode(x64)
  3. Is Possible to write data at client Side to the files from another Application ? ok, What I mean is if I can read /write the data that I save from another tool like notepad or something like that !!
  4. Thanks Work Very good !! The data save in the Window Temp Files ? Is Possible to write data at client Side to the files from another Application ?
  5. I try to Compile the test And I got the Following Error [dcc32 Fatal Error] Main.pas(9): F1026 File not found: 'C:\Utilitario\Unigui\TestBroStorage\DesignIntf.dcu'
  6. thanks for your information Farshad
  7. Hi Farshad, could you send me a quotation, because for the company that I work need it , in order to generate a purchase Order. I talked to my boss about the License and we are willing to buy it as soon as it'll be available .
  8. Excellent, Congratulations Ronny Encarnacion
  9. Hi, Is there some way to refresh a URframe on runtime, because I was trying but it not refresh I'm Doing like these UniURLFrame1.HTML.Clear; UniURLFrame1.HTML.Add(FieldByName('Contrato').AsString); UniURLFrame1.Refresh; I'd like to know if the content of UrlFrame is static ? Thanks
  10. Hi, I need help with these case I try to open a pdf document with javaScript Using javaScript The Variable UniMainModule.gs_ReporteDireccion store the Address of the PDF Document. I'm Interest into Load from the cache Files Because I don't want to Fill the Files Folder with PDF Files. the Cache files are delete as soon you close the session. If I create the pdf file under Files Folder I can Load but as I say bellow I'm interest in load from Cache Files procedure TfrmReportPreview.UniSpeedButton1AjaxEvent(Sender: TComponent; EventName: string; Params: TStrings); begin UniSession.AddJS('window.open("' +UniMainModule.gs_ReporteDireccion+'")'); end;
  11. gs_ReporteDireccion is Global Variable that come from MainModule
  12. procedure Imprimir(ReporteSalida: TppReport); var lPDFDevice: TppPDFDevice; CacheFileName,FName: string; begin // creat and configure the PDFDevice lPDFDevice := TppPDFDevice.Create(nil); FName := FormatDateTime('hhmmsszzz', NOW) + 'Reporte.pdf'; CacheFileName := UniServerModule.LocalCachePath+FName ; try lPDFDevice.PDFSettings := ReporteSalida.PDFSettings; lPDFDevice.FileName := CacheFileName; // assign output stream lPDFDevice.Publisher := ReporteSalida.Publisher; // generate the report gs_ReporteDireccion := CacheFileName; ReporteSalida.PrintToDevices; gs_ReporteDireccion := CacheFileName; HtmlFramePreview.URL := UniMainModule.gs_ReporteDireccion; // UniSession.SendFile(CacheFileName); finally lPDFDevice.Free; End;
  13. Hi, Farshad I did it as you say but didn't work either
  14. Hi Farshad Here What I do UniURLFrame1.URL := CacheFilename
  15. I'm doing like you say look what I'm Doing CacheFileName := UniServerModule.LocalCachePath + FormatDateTime('hhmmsszzz', NOW) + 'Reporte.pdf'; But It doen't work then If I use like these Work Fine "UniSession.SendFile(CacheFileName);" The application need to use the preview in a frame or something like that
  16. Hi, People, Need help as soon as possible, in how Could I load a pdf file in a UrlFrame because I was trying like these " UniURLFrame1.URL := myAddress+'Namdd.pdf'" but It doesn't work . If I can do it in a UrlFrame I can resolve my problem with ReportBuilder Using RichText Thanks
  17. Hello, Farshad I'd like to know if you will include dbRadioGroup in the Next release Thanks Ronny Encarnacion
×
×
  • Create New...