Jump to content

import & Export File Excel


knopix

Recommended Posts

  • 3 weeks later...
  • 6 months later...
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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...