7
votes
Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C#
I think that Delphi's ActiveX import wizard doesn't know how to handle the structVTIQSnap type (which seems to be a record) properly and just uses the default OleVariant.
Is there a type declaratio …
2
votes
How can I create a IDataObject instance with Delphi?
Porting the C++ code to Delphi probably isn't too difficult.
Start with
type
TDataObject = class(TInterfacedObject, IDataObject)
and implement the required metho …
