I'm trying to use COM object in following way:
Dim l
l = CreateObject("tst.Ax")
Dim err As Long
Dim st As ULong
Try
l.AX_hdr(st, err)
Catch ex As Exception
MsgBox(ex.Message)
End Try
And I have error
TYPE_E_ELEMENTNOTFOUND
CreateObject works correctly, because this COM object executes some code during initialization (shows messagebox). Object should have method AX_hdr, but I don't have any idea why it can't find it. What else might be wrong? Is there are any method how to retrieve function list from COM object?