vote up 1 vote down star

Is it possible to edit resources for an executable at runtime programmatically? If so, how? If not, is there another program that can easily be used to modify resources?

Thanks, Derek.

flag

71% accept rate
Do you mean Windows Resources? This is platform specific, yes? – Scott Saad Dec 4 '08 at 0:50

5 Answers

vote up 5 vote down check

If you're looking at updating Win32 string resources, we've done this programatically using some lovely code at Microsoft. They have a working example at doing such things. The process seems a little overly complicated but it definitely works!

Check out the Support Article at Microsoft. It has all the bits you'll need for this.

link|flag
vote up 0 vote down

Thanks for the link! I can now finish my project.

link|flag
vote up 0 vote down

Also take a look at this sample code

link|flag
vote up 0 vote down

MS is providing API functions to update the resources of an executable. Not only the string table but cursors, images and so on.

Check out the documentation :

http://msdn.microsoft.com/en-us/library/ms648008(VS.85).aspx

http://msdn.microsoft.com/en-us/library/ms648004(VS.85).aspx

link|flag
vote up 0 vote down

Avoid codeproject code (not professional, full of bugs, written by kids) Always use MSDN code

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.