Shoutbox

Extracting files from within. - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: Extracting files from within. (/showthread.php?tid=37143)

Extracting files from within. by Ash_ on 01-18-2005 at 02:30 PM

ok, i need to Extract some files from withinside the .exe.
i can get them in there with a resource file but i cant get them out :S
any API References or Source Code will help.
thanks


RE: Extracting files from within. by matty on 01-18-2005 at 06:34 PM

VB:

code:
Dim File() As Byte

File() = LoadResData(101, "CUSTOM")

Open "Location of File" For Binary Access Write as #1
Put #1, , File()
Close #1

C++

Check out this link: http://pscode.com/vb/scripts/ShowCode.asp?txtCodeId=6243&lngWId=3