Home All Groups Group Topic Archive Search About

Localization VS 2005 - VB.net

Author
18 May 2006 6:11 PM
feripar@gmail.com
Hello!
I am trying to localize a windows application using satellite dll, but
I am having problems because the app can't find the satellite dll.

Do you have a little example of a  winform app that use satellite dll
(or an URL) ?


Thanks in advance!
Fernando.

Author
19 May 2006 12:06 PM
Phill W.
feri***@gmail.com wrote:

> I am trying to localize a windows application using satellite dll, but
> I am having problems because the app can't find the satellite dll.

Three options that I can think of:

Put the satellite DLL in the /same/ directory as the Application,

Add the DLL into the Global Assembly Cache (using GacUtil.exe).

Add "dependentAssembly" and "codeBase" attributes into the Application's
App.Config file to /explicitly/ tell the Application where to find the
DLL - and hope the user doesn't move it.  ;-)

HTH,
    Phill  W.