How to extract/integrate strings from Dialog and StringTable in aDLL?

K

kaipei

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?

Thanks,
 
P

Peter Duniho

kaipei said:
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
 

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