Hello,
I am developing an application and I use a 3rd party library which is basically Native excel. The problem is that this library does not implement an event which is able to notify me when the value of a cell value changes. Can I do it in my program and how?
(I thought that I could posible do sth like this :
while(OLDvalue=NEWvalue)
end while
MsgBox("The value has changed")
but this is a very slow procedure so is there a better way or I will have to stick to this)