oldteacher
Active member
I need to place a .exe file within my final exeout software.
For example:
What I wish to accomplish is use the script:
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.
For example:
- Have a folder called “math” and within the folder is math.exe along with a few other folders.
What I wish to accomplish is use the script:
Code:
procedure RunACompiledProgram;
var
MyProgram: String;
begin
MyProgram := UnpackTemporaryResource("math/math.exe");
RunAProgram(MyProgram, "", ExtractFilePath(MyProgram), false, SW_SHOWNORMAL);
end;
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.
