 |
|
 |
after selecting the List button following error occurs
System.Runtime.InteropServices.COMException (0x800A03EC): 'PopulationSample.xls' could not be found. Check the spelling of the file name, and verify that the file location is correct. If you are trying to open the file from your list of most recently used files, make sure that the file has not been renamed, moved, or deleted. at Excel.Workbooks.Open(String Filename, Object UpdateLinks, Object ReadOnly, Object Format, Object Password, Object WriteResPassword, Object IgnoreReadOnlyRecommended, Object Origin, Object Delimiter, Object Editable, Object Notify, Object Converter, Object AddToMru, Object Local, Object CorruptLoad) at ExcelSheetDisplay.GetListofSheetsAndCharts(String strFileName, Boolean bReadOnly, DropDownList drpList) in c:\Users\sivanesan\Desktop\New folder\ExcelSheetChartDisplay\ExcelSheetDisplay.aspx.cs:line 131
Please suggest me a right solution ..
Note: i have tried permission concept but not accepting
Regards
Shiva
|
|
|
|
 |
|
 |
Same problem with me
|
|
|
|
 |
|
 |
I compiled and ran the code. I proceeded to select the PopulationSample ->List ->Chart0-14 Population Chart. The graphical image does not appear, however there is a small icon instead. I used the 2010 Visual studio and 2007 Office
Thank you in advance for advice
Regards,
KJ
|
|
|
|
 |
|
 |
I tried all solutions you given but still have this Exception
System.Runtime.InteropServices.COMException (0x80028018): Old format or invalid type library. (Exception from HRESULT: 0x80028018 (TYPE_E_INVDATAREAD)) at Excel.Workbooks.Open(String Filename, Object UpdateLinks, Object ReadOnly, Object Format, Object Password, Object WriteResPassword, Object IgnoreReadOnlyRecommended, Object Origin, Object Delimiter, Object Editable, Object Notify, Object Converter, Object AddToMru, Object Local, Object CorruptLoad) at ExcelSheetDisplay.GetListofSheetsAndCharts(String strFileName, Boolean bReadOnly, DropDownList drpList) in d:\ExcelSheetChartDisplay\ExcelSheetDisplay.aspx.cs:line 124
|
|
|
|
 |
|
 |
Hi
If in a excelsheet contains some images(i.e. logo) is not displaying in aspx page.
Please help how could i resolve it.
anjan maity
|
|
|
|
 |
|
 |
Hello,
This code is very useful for me.
But when my web app is hosted on Windows server 2008 . I could not see the excel file.
I have done the DCOMCNFG settings for NETWORK SERVICE account.
I am getting following error:
System.Runtime.InteropServices.COMException (0x800A03EC): Microsoft Office Excel cannot access the file 'C:\Websites\PMT-Dev\TempFiles\gpblanke_Five Panel Report-(02-05-2010).xls'. There are several possible reasons: • The file name or path does not exist. • The file is being used by another program. • The workbook you are trying to save has the same name as a currently open workbook. at Excel.Workbooks.Open(String Filename, Object UpdateLinks, Object ReadOnly, Object Format, Object Password, Object WriteResPassword, Object IgnoreReadOnlyRecommended, Object Origin, Object Delimiter, Object Editable, Object Notify, Object Converter, Object AddToMru, Object Local, Object CorruptLoad) at ExcelSheetDisplay.GetListofSheetsAndCharts(String strFileName, Boolean bReadOnly, DropDownList drpList) in C:\Websites\PMT-Dev\ExcelSheetDisplay.aspx.vb:line 157
Any help woul be greatly appreciated!!
Thanks in advance
-Pallavi
|
|
|
|
 |
|
 |
Am also having the same problem. Have setup the application in IIS7 on local PC. Has anyone got a solution to this problem?
Thanks
|
|
|
|
 |
|
 |
Don't worry. found the solution. You need to created a directory called 'Desktop' under C:\Windows\SysWOW64\config\systemprofile. Solved my issue anyway.
|
|
|
|
 |
|
 |
tried your method. but of no avail.
|
|
|
|
 |
|
 |
Hi matrixology,
Gave up on Office automation tools, could not install MS Office COM components on the webserver. Just wanted to read an Excel file in the end and used EPPLus - more info here -> http://epplus.codeplex.com/documentation. Simple to pull data from an Excel file and manipulate.
Cheers
|
|
|
|
 |
|
 |
thanks buddy...the link was great
|
|
|
|
 |
|
 |
Its really nice application.Will you please provide same script for apsx page but with VB.Net
|
|
|
|
 |
|
 |
When I grow up I want to create applications like this one
|
|
|
|
 |
|
 |
Really Nice App. Thank you. I was looking for a tool like this.
Do you have any idea how i can take the data and convert into graph without having the chart created in excel file.
Thanks for your Help
Atheeque
|
|
|
|
 |
|
 |
I tried using this example and I get an exception when it tries to export the c:\tempgif.gif file. I don't have this file. Am I supposed to create it myself or was it supposed to be included in the zip source.
Harvey
|
|
|
|
 |
|
 |
Hi
The excel Sheet takes a very long time to load.Can anyone help me to reduce the time to load the Excel Sheet.
|
|
|
|
 |
|
 |
on a button click event i Redirect the aspx1 page to another aspx2 page in the server, where the aspx2 opens an excel sheet.The code used in aspx2 Page Load event(which is in the server) is
string fliepath = "http://servername/xyz.xls";
string filename = System.IO.Path.GetFileName(fliepath);
string path = Path.GetDirectoryName(fliepath);
Response.Clear();
Response.ClearHeaders();
Response.Charset = "";
Response.ContentType = "application/vnd.xls";
Response.AddHeader("Content-Disposition", "attachment; filename="+filename);
Response.Flush();
Response.WriteFile(@"D:\foldername\xyz.xls");
Response.End();
This works fine.i am able to open and save the file.But i want the Excel to open inside the aspx1 page as you done here(Excel inside the panel).As am new to asp.net am not able to understand the codings given here.Can you make something simple to achieve my task.Please.....
|
|
|
|
 |
|
 |
string fliepath = "http://xyz/vv.xls";
string filename = System.IO.Path.GetFileName(fliepath);
Response.Clear();
Response.ClearHeaders();
Response.Charset = "";
Response.ContentType = "application/vnd.xls";
Response.AddHeader("Content-Disposition", "attachment; filename="+filename);
Response.Flush();
Response.WriteFile(fliepath);
Response.End();
i used this code in the Page Load inorder to open the Excel in the page Load.When i run this page i am getting an error in the line Response.WriteFile(fliepath); as http://xyz/vv.xls is not a valid virtual path.
Can anyone help me please....
|
|
|
|
 |
|
 |
you need to give your Inetpub path of the file say (c:\\inetpub\\wwwroot\\ProjectName\\xyz.xls)
This will work for loading and saving a file... Filepath is not suppose to be given here...
Response.Clear();
Response.Buffer = true;
Response.ContentType = "application/vnd.ms-excel";
Response.AddHeader("Content-Disposition", "attachment;filename=xyz.xls");
Response.Charset = "utf-8";
StringWriter sw = new StringWriter();
sw.Append("My Data");
Response.Write(sw.ToString());
Response.End();
Cheers, Gnanandam
Generic Thoughts under Pressure Environments
|
|
|
|
 |
|
 |
Thank you so much for the Information.
|
|
|
|
 |
|
 |
used the same code as given here.it works fine. thanks a lot.
Can anyone help me to load the excel sheet in the page load instead of clicking butons.Please....
|
|
|
|
 |
|
 |
Thanks for your comments.. Instead you can do the same in Page Load Event...
Cheers, Gnanandam
Generic Thoughts under Pressure Environments
|
|
|
|
 |
|
 |
System.Runtime.InteropServices.COMException (0x800A03EC): Exception from HRESULT: 0x800A03EC at Excel._Chart.Export(String Filename, Object FilterName, Object Interactive)
In Dcom config I checked LAUNCH and ACTIVATION for both remote and local to asp.net_machinename account.
This error I am getting when I try to run it from IIS 5 (I creat virtual directory gave read and write permisions), I am using Windows Xp Pro SP2 , office 2003 and vs 2005 .
If I am running it from VS development environment I have no issues running perfectly.
Then I did one change I added ASPNET user account to Administrator group and restart my pc and it works fine but as soon as I remove aspnet acount from admin group and restart it give me same error message.
pkhussin
modified on Wednesday, February 27, 2008 3:36 AM
|
|
|
|
 |
|
 |
Hi
greate article,but may you help me how i can add visio shapes
to my windows forms using C#?
I want add some shapes programmatically.
Thanks
|
|
|
|
 |
|
 |
Thnx 4 ur comments.. I will try the same and let you know about it.. I think it will not be a problem once if you insert as an object in Microsoft Excel.
Cheers, G
Generic Thoughts under Pressure Environments
|
|
|
|
 |