Is there a tool\utility that shows the interfaces that an object supports ?
I use Typelib browser (by jose roca) but it doesn't show all the supported interfaces.
For example, the UserForm object of the MSForms library supports the IAccessible interface as shown in the following code :
But, I don't see the IAccessible interface listed on the above mentioned typelib browser!
Regards.
I use Typelib browser (by jose roca) but it doesn't show all the supported interfaces.
For example, the UserForm object of the MSForms library supports the IAccessible interface as shown in the following code :
Code:
Private Sub UserForm_Activate()
Dim acc As IAccessible
Set acc = Me
MsgBox acc.accName(0&) ' successfully displays the form title
End Sub
Regards.