I need to place a .exe file within my final exeout software.
For example:
- Have a folder called “math” and within the folder is math.exe along with a few other folders.
When I am looking at the “math” folder in file manager, all the folders are shown, but not the math.exe file?
What I wish to accomplish is use the script:
procedure RunACompiledProgram;
var
MyProgram: String;
begin
MyProgram := UnpackTemporaryResource("math/math.exe");
RunAProgram(MyProgram, "", ExtractFilePath(MyProgram), false, SW_SHOWNORMAL);
end;
Then I want to call “math.exe” from a toolbar button using HEScript Function: UserMain.runacompiledprogram
Not working. Since the “math.exe” is not showing up in folder within the file manger, maybe why not working?
I often over complicate things… What can I do to make this work?
Have looked at Not Found | ExeOutput for PHP - PHP to EXE Compiler Software - Make Windows Apps but 404 error. There are a few threads here (some mine) but none have helped.
8 posts - 3 participants