From: Peter Duniho on
kaipei wrote:
> Hi,
>
> I'd like to extract/integrate strings from Dialog and StringTable in a
> DLL file.
> I do so because I'm working on a localization group. I need to find a
> solution to extract all English strings from DLL file and translate
> them. At the end, integrate those localized strings into DLL.
>
> I cannot find any open source (or library) to accomplish this task.
> Any suggestion?

I don't believe there's any support for dealing with unmanaged DLLs in
..NET. However, it should not be hard for you to use LoadLibrary() and
related functions from the unmanaged API to gain access to resources in
an unmanaged DLL.

As for integrating them into some other DLL, without more specifics
about what you mean by that, I don't see any good way to answer the
question.

Pete