Using OWC 11.0 open Excel file
:cool:
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!
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
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