Creation for excel file in classic asp

Marsius

New Member
I created a excel file in classic asp with the following code.\[code\]Set objExcel = CreateObject("Excel.Application")objExcel.Visible = TRUEobjExcel.Workbooks.AddSet objWorksheet = objExcel.Worksheets("Sheet2")objWorksheet.ActivateobjWorksheet.Cells(1, 1).Value = "http://stackoverflow.com/questions/12794633/A"\[/code\]I have got the following error.\[code\]Microsoft Office Excel (0x800A03EC)Microsoft Office Excel cannot open or save any more documents because there is not enough available memory or disk space. ? To make more memory available, close workbooks or programs you no longer need. ? To free disk space, delete files you no longer need from the disk you are saving to.\[/code\]How can I solve this? Thanks.
 
Back
Top