Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to read an external resource file which is not embedded in application?

Is it possible to read an external resource file which is not embedded in an application?

I am using Delphi 7.

like image 339
PDM Avatar asked Dec 26 '22 19:12

PDM


1 Answers

To read directly a res file you must parse the RESOURCEHEADER structure and then read each resource in the file depending of its type. If you want avoid writing this type of code yourself, then you can use the Delphi Resource Utilities from Colin Wilson (author of the XN Resource Editor tool).

like image 80
RRUZ Avatar answered Apr 29 '23 21:04

RRUZ