How can I put a DLL in a resource file? Here is the code im working with [thanks to the VB Codebank section]
You will see the DLL in there.
Printable View
How can I put a DLL in a resource file? Here is the code im working with [thanks to the VB Codebank section]
You will see the DLL in there.
you can add the dll as a custom resource... unless you mean adding it by code... :confused:
http://www.vbforums.com/attachment.p...postid=1550709
Heh, Hi to you to. Im sorry, i shouldve been more clear. I need to know how to call it out. The prog needs it to do the screencapture ;)
use LoadResData(id,type)
Open "C:\some.dll" for binary as #1
put #1,,LoadResData(101, "DLL")
close #1