I am writing a table of data into excel using the code below:
app = CreateObject("Excel.Application") 'New Excel.Application
app.DisplayAlerts = False
wkb...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_22071331.htm...
I am getting this error on my prod server:
Error Type:
Microsoft Excel (0x800A03EC)
Microsoft Excel cannot open or save any more documents because there is not enough available memory or disk ...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_20298450.htm...
Zones:
ASPDate Answered: 07/17/2002 Grade: A Views: 5
This excel find/replace code works great under Excel 2003 but bombs with an
error (pasted below the code) in Excel 2000. Can anyone suggest an
alternative to make both happy? I am using vb.net wi...
http://www.experts-exchange.com/Programming/Languages/.NET/Q_20868237.html
Zones:
.NETDate Answered: 02/11/2004 Grade: A Views: 0
Exception Details: System.Runtime.InteropServices.COMException: Exception from HRESULT: 0x800A03EC.
Source Error:
Line 32: xlApp.Visible = true;
Line 33: string strFileName = sFileN...
http://www.experts-exchange.com/Programming/Programming_Languages/C_Sharp/Q_21267120.html
Zones:
C#Date Answered: 01/14/2005 Grade: C Views: 1050
Hi there,
I am trying to export a chart using the Excel11 object from within ASP.NET. Calling Export() on the Chart
object throws the following COMException
Exception: System.Runtime.Interop...
http://www.experts-exchange.com/Programming/Languages/.NET/Q_21382393.html
I'm trying to save an Excel file as a csv file
The following code:
xlApp.Workbooks("Yourworkbookname").SaveAs( "CSVfilename.csv", Excel.XlFileFormat.xlCSV, null, null, false, false, Excel.XlSaveA...
http://www.experts-exchange.com/Software/Office_Productivity/Office_Suites/MS_Office/Excel...
Zones:
MS ExcelDate Answered: 04/17/2006 Grade: A Views: 0
I am developing an Office 2003 SmartDocument application where Excel charts in the document are to be populated with data from code.
The following code handles the update of all Excel charts in th...
http://www.experts-exchange.com/Programming/Misc/Q_21980938.html
Zones:
ProgrammingDate Answered: 11/14/2006 Grade: A Views: 0
System.Runtime.InteropServices.COMException was unhandled by user code
ErrorCode=-2146827284
Message="Exception from HRESULT: 0x800A03EC"
Source=""
StackTrace:
at System.Runtime...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_22483519.html
Zones:
C#Date Answered: 04/02/2007 Grade: A Views: 148
I load an excel file using the ExcelApplication interop from C#. I do it by first loading an 2-D array with all my data and then selecting a range and setting:
range.Value2 = arrData;
This work...
http://www.experts-exchange.com/Software/Office_Productivity/Office_Suites/MS_Office/Excel...
Hello,
I made a little program on my pc ( Windows XP pro + Excel 2000). It calculates some numbers and try's to put them into an excel worksheet.
On my PC I had no problems.
But a friend of ...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_21113911.htm...