TIEResourceExtractor.Create
Declaration
constructor Create(const Filename: WideString);
Description
Creates a new instance of TIEResourceExtractor loading the specified PE file (EXE, DLL, OCX, ICL, BPL, etc..).
It is possible to check the success of loading reading
IsValid property.
FileName specifies the path and filename of PE module.
re := TIEResourceExtractor.Create('explorer.exe');
try
...
finally
re.Free;
end;