Hi,
Am also facing the same error for Newlist function and it is intermittent.
DId anyone find a solution for this error?
Any HP experts to help this out?
Dim tsFolder As TestSetFolder
Dim tsFolder1 As TestSetFolder
Dim tsetList As List
Private Sub ComboBox1_Change()
Dim temp1 As String
temp1 = ComboBox1.Value
If temp1 <> "" Then
Set tsFolder1 = tsFolder.FindChildNode(temp1)
Set tsetList = tsFolder1.NewList
If tsetList.Count <> 0 Then
For Each TestSet In tsetList
ComboBox2.AddItem TestSet.Name
Next
End If
End If
End Sub