CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jun 2005
    Location
    VIETNAM
    Posts
    1

    Cool Using OWC 11.0 open Excel file



    Hi all!

    My C# application has a form with embedded spreadsheet control (it is from OWC v11.0). I want to open an existing Excel spreadsheet and load its content, include charts, pictures, other objects, into above spreadsheet control.

    How can I do that? Please let me know if there is another way to embed a spreadsheet into form.

    Please help me asap! Thanks in advanced!
    Last edited by nguhanhson; June 1st, 2005 at 09:37 PM.

  2. #2
    Join Date
    Jun 2009
    Posts
    1

    Re: Using OWC 11.0 open Excel file

    Hi, have you found the OWC solution? I have a similar task too and it is really hard to find anything about it. Now I use streaming xls file into browser window by:

    Response.ContentType = "application/vnd.ms-excel";
    Response.ContentType = "application/x-msexcel";
    Response.TransmitFile(downloadPath);

    But I want to try the OWC... Thanks

  3. #3
    Join Date
    Aug 2009
    Posts
    1

    Re: Using OWC 11.0 open Excel file

    Was wondering if any progress was ever made on this as I would like to do the same thing described. Any help or direction would be greatly appreciated.

    Jason

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured