Hi again,
let me see if I undersood your problem: you need to build an application with which a support file has to be created in the sub-folder INFO\TEMPLATE relative to the main folder where the program is installed; and you want to leave the possibility to choose the main folder.
If this is correct, I modified your build file to show how to do it.
Open the test3.bld with the app. builder:
- Target tab: here you set the destination of your application when you hit the Build button;the support file directory is where the builder and installer will place automatically any needed support file ( for example dlls)
- Source files tab: click on custom destinations and select test.txt; you see that the destination is c:\test\info\template. Thi
s is the place where this speciific support file will be placed when buiding the app.
- Switch to Installer Settings tab: you see that the default installation foldet is Program files with sub-folder Application. This is the default destination of your application when you run the installer. But keep in mind that you have the option to change this destination during installation (you get a message dialog).
- Hit the Files button and select Test.txt. The installation destination is set to Install directory (it is the destination directory you choose during install). And as Insatllation application subdirectory I typed info/template. This is the path destination of your support file relative to installation dir.
With the installer created you can choose the install dir. and the test.txt will be created in
\info\template.
Let me know if you need more explaination.
Good luck,
Alberto