Page 1 of 1

make exe that does not require dll

Posted: Thu Jul 28, 2016 12:02 pm
by alepap
Is it possible to make a EXE file that does not require DLL files? It sounds stupid, but I´m tired of copying all the DLL in a folder to use a simple utility EXE file. That would be nice to be able to include all the DLL needed into the EXE file.

Thanks

Alexandre

Re: make exe that does not require dll

Posted: Thu Jul 28, 2016 12:53 pm
by rdonnay
That is not possible.

As a minimum, you will require all the runtime DLLS of Xbase++.

You should not be copying any DLLs at all unless you are sending your program to another computer.

Instead, you should use the SET PATH=<dll path> to point to the Alaska DLLs.

Re: make exe that does not require dll

Posted: Thu Jul 28, 2016 1:36 pm
by Auge_Ohr
hi,

you can "pack" and run your Xbase++ App and DLL with this :
http://www.boxedapp.com/boxedapppacker/

Re: make exe that does not require dll

Posted: Fri Jul 29, 2016 7:33 am
by unixkd
You can also use Molebox, very nice

Joe

Re: make exe that does not require dll

Posted: Mon Aug 01, 2016 9:40 pm
by alepap
Thank you for the help.

:clap: