Forum Discussion
Hi Paul,
Is the following code what you are looking for?
' Create an application object
Set TestCompleteApp = CreateObject("TestComplete.TestCompleteApplication")
' Obtain an integration object
Set IntegrationObject = TestCompleteApp.Integration
' Obtain the Project program object
Set ProjectObj = IntegrationObjectj.GetObjectByName("Project")
' Obtain the variable collection
Set VarCol = ProjectObj.Variables
'...
- pjageronimoContributorYep, actually saw this one in SQAForums, i just don't know how to process the variable collection... Can you provide a sample code that will process the collection?
Hi Paul,
What about this?
VarCol.VarName = "MyValue"