Dim qtApp
f_path = InputBox("Enter the path of the test you want to convert.")
asso_add(f_path)
Private Function asso_add(TestPath)
Set qtApp = CreateObject("QuickTest.Application")
qtApp.Open(TestPath)
' Retrieve the list of the test's associated add-ins, GetAssociatedAddins can be used only when QTP is open.
Addins = qtApp.Test.GetAssociatedAddins()
For i = 0 To UBound(Addins)
msgbox Addins(i)Next
qtApp.Test.Save
qtApp.Quit
End Function