I'm building a DLL in VB.NET.

The DLL is almost ready and I have put all the error messages in a text file.

I was looking in the help and on the internet on how to make a multilanguage program.
I needed to create .resource files of it. This was done with the ResGen utility, so I have a .resources file.

The main problem I'm having now is to link this file with my DLL. There are examples where they use the vbc utility to emebed the resource in the main assembly.

This only works if it is an 1 codepage app. I've tried it several times, but I don't get the resource in my project.

Then I thought of using the Al utility to create a .resources.dll file. But I still don't know how to get it in my project.

Have any ideas????