Quantcast
Channel: New board topics in SmartBear Community
Viewing all articles
Browse latest Browse all 20755

Getting "Cannot launch another instance of this application" error when launching the testcomplete

$
0
0

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

 

 


Viewing all articles
Browse latest Browse all 20755

Trending Articles