Thread: Save problem
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
MikeR[_2_] MikeR[_2_] is offline
external usenet poster
 
Posts: 13
Default Save problem

"Tom Ogilvy" wrote in message ...
If you need to do an after_save action, then in the before save event, set
cancel = true to cancel the user initiated save, disable events so you don't
trigger another before_save event, perform you actions, save the file,
enable events, activate your page.

--
Regards,
Tom Ogilvy


Thanks Tom... had the enabled events in the back of my mind the
"cancel = true" was the missing bit