Create resource file and compile it as DLL

M

Maileen

Hi,

I would like to do like in C++ (i already did it several times) a
language DLL.
for that in C++, i've created a resource DLL where all translations are
saved as string resource.
after, i compile this RES file as DLL.

But how to do these 2 steps in VB.NET ?
thanks a lot,
Maileen
 
H

Herfried K. Wagner [MVP]

Maileen said:
I would like to do like in C++ (i already did it several times) a language
DLL.
for that in C++, i've created a resource DLL where all translations are
saved as string resource.
after, i compile this RES file as DLL.

RES files (Win32 resources) are not used any more.

First, I suggest to read the chapters about internationalization of .NET
applications:

Microsoft .NET Internationalization
<URL:http://www.microsoft.com/globaldev/getwr/dotneti18n.mspx>

Globalizing and Localizing Applications
<URL:http://msdn.microsoft.com/library/en-us/vbcon/html/vboriinternationalization.asp>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top