is possible to edit/replace an embbebed resource file after compile a file?

  • Thread starter Thread starter andre
  • Start date Start date
A

andre

I have a grid layout embbebed when compiled, in runtime after compile the
program, I need to change something, I can extract the file to get the
properties, but can I edit and replace the file at runtime and update the
resource in the compiled file?

thanks aM
 
Hi andre,
Since all managed resources are kept in the *.text* section of PE/COFF file,
which is readonly you cannot change the file inside the image of the
assembly on the disk. So what you should do is to keep the grid layout in
separate file (not embeded), which file you can change whenever you want.

HTH
B\rgds
100
 
Hi JohnSun,
Unfortunately Windows Forms doesn't have the support of Doc/View
architecture that MFC has. You have to implemented by yourself or
use some 3th party framework if there is any.

B\rgds
100
 
Oops! Sorry ;-(

100 said:
Hi JohnSun,
Unfortunately Windows Forms doesn't have the support of Doc/View
architecture that MFC has. You have to implemented by yourself or
use some 3th party framework if there is any.

B\rgds
100
 
Back
Top