Subj : Re: Extracting files from EXE files To : comp.programming From : Joe Butler Date : Mon Jul 25 2005 08:08 am add them into your resource as a custom type and then extract them when you (first) run and write them to disc. You'll need to dynamically load all of your dlls though, otherwise your main program will not run when the dependent dlls are not available. Secondly, if a restricted user runs your program, they may not have write privilages to the location you want to extract your dlls to. FindResource LoadResource LockResource SizeofResource wrote in message news:1122271221.318685.56130@z14g2000cwz.googlegroups.com... > It would be nice to be able to extract dll files from within exe files > without having to install the programme. > > Is there a way of doing this > > Thanks > .