PDA

View Full Version : Attaching DLL to EXE in Delphi?



cronodragon
04-11-2006, 01:17 AM
Is there a way to attach a DLL file to an EXE file? Maybe with Delphi, or using a 3rd party utility like an .exe compressor.

Brainer
04-11-2006, 07:29 AM
Is there a way to attach a DLL file to an EXE file? Maybe with Delphi, or using a 3rd party utility like an .exe compressor.

Hi :D

There are two ways of attaching a DLL file to an EXE:
1.) Try to insert that DLL file to a resource file. You can use Restorator or Resource Hacker. They're both good :)

2.) If you meant using functions from DLL, use static or dynamic loading from DLL.

HTH,
Br@iner.

JernejL
04-11-2006, 10:55 AM
If you want to use your dll inside a executable, try this:
http://www.basegraph.com/bg/tutorials/eng_tutor_dlltools/dlltools.html

cronodragon
04-11-2006, 03:09 PM
Thanks ppl, I'll try those methods :D