ContributionsMost RecentMost LikesSolutionsRe: What does the "True" parameter for running an executable from a script mean? Thank you. 🙂 Seems obvious after you pointed out the Run Method page. I missed the obvious. Thanks again. What does the "True" parameter for running an executable from a script mean? I am fairly new to TestComplete (about 3-4 months) and I've noticed that when I record scripts where I am running an executable, it will create a line like TestedApps.ProgramName.Run(1, True) I firgured out that the "1" was for the instance of the program, so you can run more than one instance. I haven't been able to find out what the "True" denotes. Can anyone tell me what this is? Thanks in advance. SolvedRe: How to use a project variables in a VB script unit This may not be the issue, but I had an issue with encrypted passwords entering consistently in forms. I found that using the .DecryptedValue or something similar after the variable name made it work all the time. Example: textbox.Keys(Project.Variables.VariableName.DecryptedValue) Posting this in case it helps someone.