View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips Bob Phillips is offline
external usenet poster
 
Posts: 10,593
Default Add-in used by more than one user

Addins are generally code repositories, maybe they hold some static data,
but they do not get updated within the process. So effectively they are
read-only and you can have as many users as you wish accessing them.

However, you do have the problem that the shared drive may be offline, so
the addin is gone. Typically addins get installed on each client desk,
preferably using a self extracting installer.

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Harry" wrote in message
...
Usually, when a workbook is saved on a shared drive, only one person has
access to it at a time.

Does the same prohibition apply to add-ins?

thanks