I used below code to launch Testcomplete using vbscript. Receivd popup information "Cannot launch another instance of this application" , I didnt perform any action, and after sometime error "Object Required " at Line tcApp.Visible = True
Dim tcApp
const tcAppID="TestComplete.TestCompleteApplication"
On Error Resume Next
tcApp = GetObject( , tcAppID)
If Err.Number <> 0 Then
Err.Clear
Set tcApp = CreateObject(tcAppID)
End If
On Error GoTo 0
tcApp.Visible = True