Jump to content

Bresler

uniGUI Subscriber
  • Posts

    172
  • Joined

  • Last visited

  • Days Won

    5

Posts posted by Bresler

  1. +1...

     

    Estoy haciéndole modificaciones al BMUNIDBGRID acorde a las actualizaciones que Mr. Farshad ha estado introduciendo al DBGRID. Así que pronto estaré posteando aquí nuevamente... Saludos a todos los colegas de habla hispana...

  2. Hi Fenix

     

    I'm sorry for be missing for a long time (personal problems). Here is what you were asking for (thanks to Salvatore). I hope it can be useful to you.

     

    Link updated here.

     

    PS: I added an installer called Build.EXE to the component (from Spring4D framework project). Now installation process is easier, you don't have to add manually the path to Options/Library. Enjoy it.

     

    Best regards.

  3. Hi mderie

     

    Firstly I want to thank you for the correction, I really made all the BMUniDBGrid packages in Delphi XE7, it seems that some changes  for ClientDatasets  are made on recent versions.

    About MultiSelection on UniDBGrid, I think that is Mr. Farshad who can answer that question. BMUniDBGrid was born because of what you're asking for.

     

    I hope BMUniDBGrid be useful to you.

     

    Regards.

  4. Hi Ronny

     

    I had never try ReportBuilder. It allow to publish all my reports on a web server?

     

    Hola Ronny

     

    Nunca he visto ni experimentado con ReportBuilder. Me permite publicar todos mis reportes en un servidor web?

     

    Cheers

  5. Hi Davie

     

    Fastreport Server do all the heavy work for you. It is simpler than you think. Fastreport Server is a web server with your reports published on him. So, you just have to write the URL to access to your report on the web, and FastReport let you choose how do you want to export it, as PDF, as XLS, etc, or if you want to print it.

     

    Cheers

  6. Hi Davie

     

    About Fastreport Server as a Service is something done just one time and can be useful for all your project in the future, so my step is this:

    procedure TfrmReportsMyModule.UniPanel2Click(Sender: TObject);
    var
      MyForm: TFormUrlView;
    begin
      MyForm := TFormUrlView.Create(Self.UniApplication);
      MyForm.URLFrame.URL := 'http://inv-web:8097/result?report=1.CajaPSA\\Estado%20de%20Tarjetas%20de%20ISLAZUL%28nuevo%29.fr3&format=PDF';
      MyForm.ShowModal();
    end;
    

    So, in the URL I just write the URL to my report published on my FastReport Server.

     

    Cheers

  7. Hi Davie

     

    In my case, I started using FastReport with uniGUI following this sample, it works good for simple reports (no much DB process), right now that way is not good to my due to I have to make heavy db process and this way turns too slow  (DB process must to ends first and then export the report to PDF). There is a faster way, if you have the Fastreport Enterprise Components installed, you can create a Fastreport Server (I prefer it as a service) and publish all your reports there, so you can load your reports on a TUniURLFrame component.

     

    Best regards

×
×
  • Create New...