In this project there is going to be two .exe files:
- Main, in this user can adjust settings and generate a .exe (child)
- Child, this .exe will have these user customized settings
So basically the goal is let user generate their own customized .exe. All this happen from the main .exe
I have embed a .exe (child) into another .exe (Main), as resource. Now I want make these settings applied to .exe (child)
Thx in advance
Store the settings as a resource in the embedded exe, then use
BeginUpdateResourceand friends to modify it after extracting. See Resource Functions on MSDN.