Jump to content

import & Export File Excel


knopix

Recommended Posts

  • 3 weeks later...
  • 6 months later...

Roony encarnación , me podría indicar como hacer para usar Flexcel c/unigui, lo he usado en ambiente vcl pero no con web unigui, no se como enviar el archivo al servidor , yo use flexcel en delphi 5 sin problema.

 

gracias de antemano

 

mmurgas

Link to comment
Share on other sites

Hello is so Simple with FlexCel  Here the Code

var
  MemStream: TMemoryStream;
begin
  inherited;
  MemStream := TMemoryStream.Create;
  try
    FlexReporteComision.SaveToStream(MemStream);
    UniSession.SendStream(MemStream, 'ReporteComision.XLS');
  finally
    MemStream.Free;
  end;
Link to comment
Share on other sites

Hello is so Simple with FlexCel  Here the Code
var
  MemStream: TMemoryStream;
begin
  inherited;
  MemStream := TMemoryStream.Create;
  try
    FlexReporteComision.SaveToStream(MemStream);
    UniSession.SendStream(MemStream, 'ReporteComision.XLS');
  finally
    MemStream.Free;
  end;

I worked only in localhost mode .... uploaded it to the server and it did not work

 

 

... I will be doing wrong? :huh:

Link to comment
Share on other sites

I have used SMI import tools by Scalabium software for regular Delphi projects. Not sure if it will work here with UniGUI.  SMI tools are very easy to use and have been very good for my needs. I will test in the upcoming weeks as my project also require this , unless someone else can comment.

 

John P.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...