In the Delphi Compiler Action, on the project tab there is a "Starting Dir" option. I don't see anything in the help file under the list of available properties that would correspond to this. Is there one? Thanks, Kevin
The Starting Directory is the current directory passed to the windows CreateProcess function. This is usually set to the directory where the delphi project lives, however some customers want to change this so we exposed it as a property.
What is the property name? I don't see it in the help file. I must just be missing it. :-)
The property name is StartingDir
Should guessed that one.
Thanks!
In vbscript and javascript you can use the code completion/initellisense to find out the property names, in powershell you can do this :
$Action | get-member
Also, if you select the property in the Action properties inspector, the scripting property name is shown below the inspector.