limelect 48 Posted January 1, 2019 I have resource as {$R ResourcePNG.RES} It include png as RCDATA.No problem. I know how to show all resources of a program by using EnumResourceTypes(hinstance, @enumResTypesProc, Integer(mmo1.Lines)) How ever i would like to see ONLY the ResourcePNG.RES content. I suspect i have to have the handle of ResourcePNG.RES instead hinstance ? am i correct and how to do it? I do NOT WANT TO LOAD A FILE while running. Share this post Link to post
Anders Melander 1783 Posted January 2, 2019 Not possible. Only the resource ID, type and content is stored in the executable. In other words: After a resource has been linked into an application there's no way of knowing where it came from. 1 Share this post Link to post