ContributionsMost RecentMost LikesSolutionsRe: test complete 9 suddenly deletedAlso, this is a 64 bit Windows 7 Machine. Test complete was installed in the Program x86 folder, and when reinstalling by default attempts to install in a x86 folder. Installing in a non x86 folder results in unable to register errors at the end of install.test complete 9 suddenly deleted Hello, I am running test complete on a virtual machine. Yesterday test complete crashed numerous times for unknown reasons while running tests. Now I am unable to open the application and I see in explorer that testcomplete.exe contains 0 bytes. This is a new virtual machine and has been running reliably. Any ideas? Thanks.TestComplete works incorrectly in a gridHello, I cannot get Test Complete to function properly when testing a grid. I will even record a macro which test complete translates as a script, immediately run the same script and it will error. The error occurs when attempting to select a cell within the script. Here is the code (I can include screenshots if neccessary): Set CMC = Aliases.CMC CMC = .CMC Set grid = CMC.WinFormsObject("frmSurveyIntakeQualify").WinFormsObject("xtraScrollableControlOutreachQualifying").WinFormsObject("gridControlHouseholdMembers") grid = CMC.WinFormsObject("frmSurveyIntakeQualify").WinFormsObject("xtraScrollableControlOutreachQualifying").WinFormsObject("gridControlHouseholdMembers") Sys.Desktop.Keys "[Tab]" 'Select "Person" workaround .Desktop.Keys "[Tab]" Call grid.Keys("[Tab]1") grid.Keys("[Tab]1") 'Call grid.Keys("[Tab]") 'hoh 'Call grid.Keys(" ") 'Call grid.ClickNewRowCell("Person") 'Call grid.TextEdit.TextBoxMaskBox.Keys("1") Call grid.ClickNewRowCell("HOH") '*****it errors here when attempting to select a cell. the previous tabs are workarounds***** grid.ClickNewRowCell("HOH") '*****it errors here when attempting to select a cell. the previous tabs are workarounds***** Call grid.ClickNewRowCell("Income Code") grid.ClickNewRowCell("Income Code")Re: Running the same script on multiple processes.Thank you for the response. I got the conditional name mapping to work but would still like to do accomplish this through a function so I can run one script on many process that may not be mapped. Is there a way in Test Complete (using VBScript) to set a container object while changing the project name? For example, this is the code I came up with but it won't compile: '-------------------------------------------- function SetContainer(windowName) Dim container Set container = Aliases. + Project.Variables.processName + "." + windowName 'error here SetContainer = container end function Running the same script on multiple processes.Hello, I'm running a script on a QA version of a product and would like to run the same script on the beta and production version as well. The only thing I need to have change is the process name. So, instead of creating multiple scripts with Call Alias.QA. / Alias.Beta / Alias.Prod, I would just have a one script with a changing process name. I tried setting the process name as a project variable and changing the variables value to the process I am running (i.e. Alias.ProjectVar), but I get the error "Variable not defined" even though it is defined. Also, I tried to set a mapped object name to multiple objects but this is not allowed. Any ideas on how to accomplish this? Thank you.