Hi everybody
I would like to know how I can detect if an excel document needs to be saved
or not using the primary interop assemblies for excel XP.
There must be some kind of flag telling me this!
Thanks for your answer
Chris
Ken Beauchesne - 08 Nov 2005 19:27 GMT
add an event in your project to determine if the cells changed
public Excel.DocEvents_ChangeEventHandler Event_CellsChange;
Event_CellsChange = new Excel.DocEvents_ChangeEventHandler(CellsChange);
xxxx
private void CellsChange(Excel.Range Target)
{
.....
}
> Hi everybody
>
[quoted text clipped - 5 lines]
> Thanks for your answer
> Chris