CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Shared File

  1. #1
    Join Date
    Apr 2001
    Posts
    4

    Shared File

    How can we know whether a file is shared or not?
    Installshield requires to specify this.


  2. #2
    Join Date
    Sep 2000
    Location
    Ottawa, Ontario
    Posts
    356

    Re: Shared File

    A shared files is a DLL/OCX (dependancy) file that may be used by another application and therfore may not be removed during a un-install. A non-shared file is a DLL/OCX that is for your application only. If you did not create the DLL/OCX then you should used shared. The other reason for this is because during install Installshield needs to know if the DLL/OCX may be locked by another application.



    msvbvm60.dll is shared
    yourapp.dll is not shared


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured