Do you see this error as well using the com browser in 9.01 and 5?
My interface has it like this:
Property Get Errors Alias "Errors" As IErrors: Property = Me: End Property
And results into:
Method Get_Errors() As IUnknown
And should be:
Property Get Errors() As IErrors
The options are set to use properties.
version: 2.00.0081
If it in herits from IUnknown (not shown) then its not an error. IUnknown interfaces only use methods, even if PB allows you to write the source code as if it was a property.
Pfff, who knows that?
Anyway it is IUnknown yes.
Hmm, what should i choose to make it generate like a property?
I would like to use the compound syntax here (my only goal here).
There is no need for a dispatch interface.
I have many interfaces in one class.
Modifying the generated code does work as intended.
As Automation seems to work properly.
Will use that..
The other also works properly, just not the way you want.