Localization VS 2005 - VB.net

  • Thread starter Thread starter feripar
  • Start date Start date
F

feripar

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.
 
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.
 
Back
Top