InterviewSolution
| 1. |
What Is The Difference Between Path And Target Path? |
|
Answer» The Path and Target Path are the PROPERTIES of Windows Adapter and can be found in Properties Window. Path : If the APPLICATION that is required to run is from same folder where all other applications are installed or installed in any custom location then put the full path INCLUDING the application and EXTENSION. Target Path : If the desired application is opened by the another application Eg. you have written a .bat command to launch your application. Then path will contain the full path including extension of that .bat and target path will contain only application_name.extension of that application. StartMethod should be set to start and wait to launch for that application mentioned in target path PROPERTY. The Path and Target Path are the Properties of Windows Adapter and can be found in Properties Window. Path : If the application that is required to run is from same folder where all other applications are installed or installed in any custom location then put the full path including the application and extension. Target Path : If the desired application is opened by the another application Eg. you have written a .bat command to launch your application. Then path will contain the full path including extension of that .bat and target path will contain only application_name.extension of that application. StartMethod should be set to start and wait to launch for that application mentioned in target path property. |
|