HELP - How do I know if a spreadsheet has been modified

  • Thread starter Thread starter LP
  • Start date Start date
L

LP

Hi all,

I am developing a C# application that uses an Excel object on a form. I
want to promt the user if he/she want to save the changes only if the
spreadsheet has been modified. Is there a FLAG somewhere in excel that
would tell me if it has been modified?

There must be because excel itself uses this when changes are made to a
sheet.

How can I identify that it has changed?

Thanks for all suggestions and replies!!!
 
xlApp.Saved

Saved Property

True if no changes have been made to the specified workbook since it was
last saved. Read/write Boolean.

Bill Barclift
 
Works like a charm...thanks a million

LP


Bill Barclift said:
xlApp.Saved

Saved Property

True if no changes have been made to the specified workbook since it was
last saved. Read/write Boolean.

Bill Barclift
 
Back
Top