Saving workbook in code

  • Thread starter Thread starter harkit
  • Start date Start date
H

harkit

Hi
I am Rajesh. I am stuck in a big big problem. PLease help me out...

I want to open a work book in a xls file using C# code in the page-load
event of an ASP.NET page, write two values into two cells (using code),
save that workbook and redirect the browser to show that xls file

But when the workbook.save statement is being executed, a dialog is
being thrown at me saying that "A file with name <file1>.xls already
exists. Do u want to replace it?"

1) How can I save that xls file without that dialog?

And after saving when I redirect the browser to show that xls file,
that is becoming a read-only copy. I think this is due to an Excel.exe
instance running already in memory.

2) How can I make that xls file a writable one in when it is displayed
in browser?

Please help me.....

Many Many thanks in advance
Rajesh
 
Rajesh,

For your question #1, the usual method is to use this before:

Application.DisplayAlerts = False

and use this after

Application.DisplayAlerts = True

where Application is the Excel object, so change to reflect your actual coding.

HTH,
Bernie
MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top