How do I interrupt long running calulations? I would like to catch the escape button and stop the calculation if possible. Lars
On May 19, 1:40 am, Lars Schouw wrote: > How do I interrupt long running calulations? > > I would like to catch the escape button and stop the calculation if > possible. > > Lars I guess from the fact that you're posting here you own the addin? :) Call back into excel to see if an abort has been requested: http://msdn.microsoft.com/en-us/library/bb687825.aspx you don't want to check /too/ frequently, or you'll end up slowing yourself down.... Cheers, Lee.