I like to have a sub-directory called Release containing the application-exe-file, and a sub-directory called Resource containing the resource-files. Therefore i initialte my programs with:
#COMPILE EXE "Release\MyProg.exe"
#RESOURCE "Resource\Script1.pbr"
The problem is that when i press ctrl+E (Build and Execute) to compile my program, the program is not executed. The reason is that PB tries to execute "MyProg.exe" instead of "Release\MyProg.exe". Is there a way to solve this problem ?
Regards
Peter
[This message has been edited by Peter Stephensen (edited March 19, 2000).]
#COMPILE EXE "Release\MyProg.exe"
#RESOURCE "Resource\Script1.pbr"
The problem is that when i press ctrl+E (Build and Execute) to compile my program, the program is not executed. The reason is that PB tries to execute "MyProg.exe" instead of "Release\MyProg.exe". Is there a way to solve this problem ?
Regards
Peter
[This message has been edited by Peter Stephensen (edited March 19, 2000).]
Comment