How can you force VB6 to use the DLLs and OCXs from the app directory? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T23:09:37Zhttp://stackoverflow.com/feeds/question/345111http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/345111/how-can-you-force-vb6-to-use-the-dlls-and-ocxs-from-the-app-directory4How can you force VB6 to use the DLLs and OCXs from the app directory?Clay Nichols2008-12-05T20:57:01Z2009-03-17T22:26:14Z
<p>I want to put my dependent files in the app directory.</p>
<p>I seem to remember that you can force VB6 to use the files in the local directory only.</p>
<p>Any hints?</p>
http://stackoverflow.com/questions/345111/how-can-you-force-vb6-to-use-the-dlls-and-ocxs-from-the-app-directory/345154#3451542Answer by Clay Nichols for How can you force VB6 to use the DLLs and OCXs from the app directory?Clay Nichols2008-12-05T21:11:43Z2008-12-05T21:11:43Z<p>Found it myself:</p>
<p>Windows does look in the App Directory first:
If SafeDllSearchMode is enabled, the search order is as follows:</p>
<ol>
<li>The directory from which the application loaded.</li>
<li>The system directory. Use the GetSystemDirectory function to get the path of this directory.</li>
<li>The 16-bit system directory. There is no function that obtains the path of this directory, but it is searched.</li>
<li>The Windows directory. Use the GetWindowsDirectory function to get the path of this directory.</li>
<li>The current directory.</li>
<li>The directories that are listed in the PATH environment variable. Note that this does not include the per-application path specified by the App Paths registry key. The App Paths key is not used when computing the DLL search path.</li>
</ol>
<p>If SafeDllSearchMode is disabled, the search order is as follows:</p>
<p><em>1. The directory from which the application loaded.
2. The current directory.
3. The system directory. Use the GetSystemDirectory function to get the path of this directory.
4. The 16-bit system directory. There is no function that obtains the path of this directory, but it is searched.
5. The Windows directory. Use the GetWindowsDirectory function to get the path of this directory.
6. The directories that are listed in the PATH environment variable. Note that this does not include the per-application path specified by the App Paths registry key. The App Paths key is not used when computing the DLL search path.</em></p>
<p>according to : <a href="http://msdn.microsoft.com/en-us/library/ms682586.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms682586.aspx</a></p>
<p>But you can redirect where it looks for .dll's using a Manifest:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa375365" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa375365</a>(VS.85).aspx</p>
http://stackoverflow.com/questions/345111/how-can-you-force-vb6-to-use-the-dlls-and-ocxs-from-the-app-directory/346077#3460774Answer by Joel Spolsky for How can you force VB6 to use the DLLs and OCXs from the app directory?Joel Spolsky2008-12-06T08:09:55Z2008-12-06T08:09:55Z<p>It can be sort of confusing because every version of windows, the rules change. Older versions of Windows search the path before the current directory.</p>
<p>A simple solution without manifests:</p>
<p>If your executable file is <code>A.EXE</code>, add a (0-byte, empty) file in the same directory named <code>A.EXE.local</code> -- for older versions of Windows this puts the app directory ahead of the path in the search order.</p>
http://stackoverflow.com/questions/345111/how-can-you-force-vb6-to-use-the-dlls-and-ocxs-from-the-app-directory/350442#3504426Answer by rpetrich for How can you force VB6 to use the DLLs and OCXs from the app directory?rpetrich2008-12-08T18:47:41Z2008-12-08T18:47:41Z<p>You may also want to try setting up <a href="http://msdn.microsoft.com/en-us/magazine/cc188708.aspx" rel="nofollow">Reg-Free COM</a> for your project. There's a freeware called <a href="http://mmm4vb6.atom5.com/" rel="nofollow">Make My Manifest</a> that will do most of the work for you</p>
http://stackoverflow.com/questions/345111/how-can-you-force-vb6-to-use-the-dlls-and-ocxs-from-the-app-directory/353599#3535992Answer by MarkJ for How can you force VB6 to use the DLLs and OCXs from the app directory?MarkJ2008-12-09T17:36:02Z2009-03-17T22:26:14Z<p>Clay Nichol's answer about the search order is not quite correct. That search order only applies to non-COM components. I.e. only some DLLs, and not OCXs. If you register your COM objects, they will be used from the directory where they are registered regardless of what's in the local directory, <strong>unless</strong> you use reg-free COM or a .local file.</p>
<p>EDIT:</p>
<p><a href="http://mmm4vb6.atom5.com/" rel="nofollow">MakeMyManifest</a> is well spoken of as an automatic tool for creating manifests for VB6 projects, haven't tried it myself.
<a href="http://www.thecommon.net/10.html" rel="nofollow">DirectCOM</a> also has fans, again I haven't tried it.</p>
<p>There is a semi-automatic technique to generate reg-free COM manifests. You can create the manifests with Visual Studio 2008 (you can use a free version like Visual Basic Express Edition). Then make a couple of edits by hand to make the manifests suitable for use from VB6. See <a href="http://msdn.microsoft.com/en-us/library/aa697429%28VS.80%29.aspx#atupvb6ap2%5Ftopic4" rel="nofollow">this section</a> of this MSDN article for step-by-step instructions - ignore the rest of the article which is about ClickOnce.</p>
http://stackoverflow.com/questions/345111/how-can-you-force-vb6-to-use-the-dlls-and-ocxs-from-the-app-directory/453818#4538182Answer by Bob for How can you force VB6 to use the DLLs and OCXs from the app directory?Bob2009-01-17T18:55:34Z2009-01-17T18:55:34Z<p>Placing component libraries in the EXE folder (with or without .local files) can be deleterious to the hygiene of target machines too.</p>
<p>VB6 programs will register the components here via the self-reg entrypoint behind your back if they are not previously registered. Then if the application is moved or removed you leave the user with a broken reigistration - possibly fatal to subsequently installed applications using some of the same components. This is probably fine though for application specific components, i.e. your own DLL or OCX that will <strong>never</strong> be needed by another application.</p>
<p>The .local trick was really not meant for use with VB6 programs and if it is used your installer needs to be aware and properly install and register the components if they are not already on the machine. It was meant as a manual hack to get around DLL version compatibility problems on individual machines, not a deployment strategy.</p>
<p>Move up to SxS application and assembly manifests (Reg-Free COM and more) for a better solution. DLL/COM Redirection (.local) was a good try but it has many warts.</p>