Jump to content

rencarnacion

uniGUI Subscriber
  • Posts

    633
  • Joined

  • Last visited

  • Days Won

    14

Posts posted by rencarnacion

  1. Really You just can Convert to PDF,HTML or Excel  and show in the browser 

    Example 

     

    procedure TUniMainModule.Imprimir(ReporteSalida: TppReport);
    var
      lPDFDevice: TppPDFDevice;
      CacheFileName: string;
    begin
     
      // creat and configure the PDFDevice
      lPDFDevice := TppPDFDevice.Create(nil);
      CacheFileName := UniServerModule.LocalCachePath + FormatDateTime('hhmmsszzz',
        NOW) + 'Reporte.pdf';
     
      try
        lPDFDevice.PDFSettings := ReporteSalida.PDFSettings;
        lPDFDevice.FileName := CacheFileName; // assign output stream
        lPDFDevice.Publisher := ReporteSalida.Publisher;
     
        // generate the report
     
        ReporteSalida.PrintToDevices;
        UniSession.SendFile(CacheFileName);
      finally
        lPDFDevice.Free;
      end;
     
    end;
  2. Hi Farshad, Our license is almost Ending and I Guess We Won't get the Final Version before the License end could you tell us please when Do you think that the final version would be available or if we'll need to buy the for one year more ?

    As Far as I know the agreement is that our license include the Version 1 of the Unigui , could you tell us if I'm Right ?

     

     

    Thanks 

     

    Ronny Encarnacion

  3. Hi, I'm having problem installing Unigui 0.99.10.1182 

    The Error I got is 

    [dcc32 Fatal Error] uniGUI22mdcl.dpk(45): F2051 Unit uniGUImReg was compiled with a different version of unimChart.TUnimChart

     

    I had rebooted the laptop twice 

     

    Version Delphi XE8 Updated

     

     

     

    Ronny Encarnacion 

     

×
×
  • Create New...