What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » Extracting files from within.

Extracting files from within.
Author: Message:
Ash_
Senior Member
****

Avatar

Posts: 638
Reputation: 31
35 / Male / –
Joined: Aug 2004
O.P. Extracting files from within.
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
[Image: jeansiger5.jpg]
01-18-2005 02:30 PM
Profile PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: Extracting files from within.
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
01-18-2005 06:34 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On