Embeded resource

  • Thread starter Thread starter Viorel Ghilas
  • Start date Start date
V

Viorel Ghilas

Hi all,

I have an assembly, that contain some embeded resources,
How can I add in runtime, data to my embeded resources. is it posible

with best regard
Viorel Ghilas
 
Actualy it is EMBEDDED resources. This why they are compiled inside
DLL/EXE/WHATEVER you created. So you are unable to do it, however you can
read from disk/network/etc information you need in runtime. Why not to use
it?
 
I want to provide some auto configuration information and put it inside,
dll, It's more confortable to use it than find some resources from some
places.

with best regard
Viorel Ghilas
 
You have to recompile you project at runtime. It's possible, but VERY BAD
method.
I propose you to use some configuration file(registry,whatever) to save your
configuration in runtime or build what you want and recompile it within
installation script
 
Back
Top