I put exe file in project, and from button click execute those exe, and that’s work fine. Also my configuration is define to be portable and standalone application by putting this two options:
- C++ Linker->Dynamics RTL = false
- Packages->Runtim packages->Build with runtime packages = unchecked
edited:
But when I copy those application and try to use it on another computer, it wan’t execute exe file from project. That is because exe file which is included in project is not in the same directory as application.
So question is how to real include exe in project, not just put the location to them? How to configure application that can be use on another computer like on mine?
I dont know if this will work but Have you tried to include the exe file by including it in a res file, awhile ago i added some wav’s to a res file and they got included in my application, i was then able to use the onclick event of a button to play them.