I'm getting only the first event notification, and nothing happens after.
Any ideas?
UPD: I've found a strange thing. My code for event handler looked like this:
var cell = range.Cells[1, 1];
var rangeName = cell.Address[false, false, XlReferenceStyle.xlA1, Type.Missing, Type.Missing];
I've changed it in this way, adding explicit type cast:
var cell = (Range)range.Cells[1, 1];
var rangeName = cell.Address[false, false, XlReferenceStyle.xlA1, Type.Missing, Type.Missing];
And now my event handler gets called several times, and only then stops getting called.