when i create exe file with B4j create package standalone, when i run it
from a command prompt exit immediatly and continue work in background,
but i need to wait until finish, because it must create a file and after i need
to elaborate it.
You just want to create a Report.xlsx, and write a ok to finito.opn then exit app.
I wonder why you would like to lanuch it from cmd prompt. and you will do what after the file is created?
You just want to create a Report.xlsx, and write a ok to finito.opn then exit app.
I wonder why you would like to lanuch it from cmd prompt. and you will do what after the file is created?
i need to call from a php exec command but i need to wait the xlsx created for download when finish
opn was a test to wait from php but not working well.
i need to call from a php exec command but i need to wait the xlsx created for download when finish
opn was a test to wait from php but not working well.
I have a command I want to run, but I do not want PHP to sit and wait for the result. <?php echo "Starting Script"; exec('run_baby_run'); echo "Thanks, Script is running in background"; ?> ...