Results 1 to 4 of 4

Thread: Attaching DLL to EXE in Delphi?

  1. #1

    Attaching DLL to EXE in Delphi?

    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.

  2. #2

    Re: Attaching DLL to EXE in Delphi?

    Quote Originally Posted by cronodragon
    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

    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.

  3. #3

    Attaching DLL to EXE in Delphi?

    If you want to use your dll inside a executable, try this:
    http://www.basegraph.com/bg/tutorial.../dlltools.html
    This is my game project - Top Down City:
    http://www.pascalgamedevelopment.com...y-Topic-Reboot

    My OpenAL audio wrapper with Intelligent Source Manager to use unlimited:
    http://www.pascalgamedevelopment.com...source+manager

  4. #4

    Attaching DLL to EXE in Delphi?

    Thanks ppl, I'll try those methods

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •