I am working with the scantest of application documentation (shocker), and what there is seems to be misleading/contradicting. I will ask the software company as well, but their last reply took weeks. In the meantime....(thanks).....
I am trying to access the [alledged] COM interface of a GUI application we'll call: Xyz
My Question: Would the results below imply to you that there IS no COM interface available, that it needs to be registered, etc...
Here are the only two quotes related to the app's COM Interface ability:
"Since Xyz is a 32 bit application using COM (Component Object Model) components, running Xyz from a network......".
"You can access the Xyz.Interface COM object to query for information and present it in a format you like".
Dim xyz_com Set xyz_com= CreateObject("Xyz.Interface") xyz_com.Visible=false
"Object doesn't support this property or method: 'Visible'"
Dim xyz_com Set xyz_com= CreateObject("Xyz.Interface")
The initial application screen appears which - if I AM starting the application in 'server mode' as they say - I wouldn't think I would have the screen showing.
Dim xyz_com Set xyz_com= CreateObject("Xyz.Interface") xyz_com.QueryInterface()
"Object doesn't support this property or method: 'QueryInterface'"
Would the results below imply to you that there IS no COM interface available, that it needs to be registered, etc.. The CreateObject call succeeds, so the COM interface exists and is registered.
Some comments:
Dim xyz_com as Xyz.Interface
instead of just Dim xyz_com