Forum Discussion
1 Reply
Sort By
- AlexKaras
Champion Level 2
Hi,
The error means that there is already either TestComplete or TestExecute instance running in the system.
GetObject() returns an object, so instead of
tcApp = GetObject( , tcAppID)
it must be
Set tcApp = GetObject( , tcAppID)
Also I would recommend to consider the code from the https://support.smartbear.com/viewarticle/54655/ article.