View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.programming
RzB RzB is offline
external usenet poster
 
Posts: 27
Default How to keep an instance of Excel away from the user?

Brilliant... That fixed it...

Thank you very, very much...

Roy

"DM Unseen" wrote in message
ups.com...
don't forget m_objXlApp.IgnoreRemoteRequests = True 'to prevent user to
launch XL files through explorer
and if your really paranoid also:
m_objXlApp.Interactive = False

DM Unseen