Tagged Questions
The queryinterface tag has no wiki summary.
6
votes
3answers
881 views
Delphi: How to implement QueryInterface of IUnknown?
In Delphi, IUnknown is declared as:
function QueryInterface(const IID: TGUID; out Obj): HResult; stdcall;
Note: The output parameter is untyped
In my TInterfacedObject descendant i need to handle ...
4
votes
1answer
708 views
InvalidCastException, QueryInterface call failing on COM component
First off, I'm extremely new to the whole COM scene so bare with me.
I'm trying to use PCAnywhere's Ole automation in a .net applicaction I'm currently developing (VS 2010, c#). PCA 12.5 comes with a ...
2
votes
1answer
271 views
Access violation casting IDispatch in XE2
We're using some old code (ComLib.pas created by Binh Ly) so we can use the enumeration interface on an (OleVariant) object:
type
TDispNewEnum = dispinterface
...
2
votes
3answers
101 views
Does IUnknown::QueryInterface() increment the reference count?
If I have an IUnknown *ptr, do I need to call Release() on every interface I obtain through ptr->QueryInterface(), in addition to calling ptr->Release() when I'm done with ptr?
I used to think ...
2
votes
0answers
310 views
Python, ArcObjects, and .AppRef: how to get from IAppROT to IMxDocument?
I am writing an external Python/comtypes script (in PythonWin) that needs to get a reference to the current ArcGIS 10.0 ArcMap session (through the ArcObjects COM). Because the script is outside the ...
2
votes
3answers
725 views
Access violation after GetInterface/QueryInterface in Delphi
First, I'm very new in Delphi and COM, but I should build COM application in Delphi. I read a lot of articles and notes on the internets, but COM and COM in Delphi are still not clear to me.
My ...
1
vote
3answers
316 views
question on QueryInterface()
why is a QueryInterface call is always followed by a Release call? for example, I have seen a sample code from msdn as below:
HRESULT hr = S_OK;
CDecoder *pObj = new CDecoder(&hr);
if ...
1
vote
0answers
115 views
How can I do a Custom QueryInterface for .NET 3.5?
I have .NET Assembly exposed to COM, and I want to create a custom QueryInterface, otherwise my Class will have to implement a lot of interfaces.
Currently my implementation is like this
...
1
vote
1answer
335 views
What is IconnectionPoint and EventHandling
Trying to understand What is IConnectionPoint and how this is connected to IConnectionPointContainer,IEnumConnectionPoints,IEnumConnections and EventHandling.
Read the artcicles from MSDN and ...
1
vote
2answers
373 views
How to make 'will_paginate' lazyload in rails 3?
In rails3, almost all query interface change to be lazyloading now, but 'will_paginate' will hit the database imediately after you use the 'paginate' method. How can I make it lazyload records?
1
vote
1answer
149 views
QueryInterface method for the IID_IPersistStreamInit quit working
I have an application that I've been using to parse data from an HTML document. The application has been working for a few years until this week when the QueryInterface method for the ...
1
vote
2answers
268 views
Zero results in Query/GqlQuery
How do I know if the results of my query either using the Query interface or the GqlQuery interface returned zero results? Would using .get() on zero results produce an error? If yes, what's the best ...
1
vote
1answer
443 views
queryinterface for interface failed
I'm using an interop COM assembly in my 1.1 VB.NET code, and when I try to set a property of a class, I get an InvalidCastException with the message "QueryInterface for Interface … failed."
Any ideas ...
1
vote
2answers
439 views
QueryInterface for interface VBA._Collection failed
we are randomly seeing this error during long executions of our system. The error is caught by our alarm system, and we successfully retry, and continue running the system. The only hits we found on ...
0
votes
2answers
71 views
How do Powershell query interface on a COM object
I created a COM object using Powershell:
$obj = new-object -com MyLib.MyObj
Then I need to query the interface "MyLib.MyInterface" on that object, but I have no idea how to do it with PowerShell.
...
0
votes
1answer
307 views
Using the RFCOMAPIlib (RightFax COM API): Unable to cast COM object
I'm working with the RightFax COM API. What I want to do is simply send a fax with an attachment. Simple right? That question has been answered a few times. However, when I use some of that code in my ...
0
votes
1answer
127 views
Exception on QueryInterface(IID_IBaseFilter, …) Why?
I create my DShow COM dll (DirectShow filter), and try ManualLoadDLL() from inside simple
application (on Windows mobile 6.5.3. Emulator).
But on bold line
hr = ...
0
votes
3answers
173 views
Has anyone else noticed this behaviour in Delphi using QueryInterface?
Here are my types...
unit unitTestInterfaces;
interface
type
IFoo = interface
['{169AF568-4568-429A-A8F6-C69F4BBCC6F0}']
function TestFoo1:string;
function TestFoo:string;
end;
...
0
votes
1answer
496 views
Access violation exception from Delphi's Supports -> QueryInterface
I have the following piece of code:
for i := 0 to FControlList.Count - 1 do
if Supports(IMyControl(FControlList[i]), IMyControlEx) then
begin
MyControlEx := ...
0
votes
1answer
601 views
QueryInterface fails at casting inside COM-interface implementation
I am creating a tool in c# to retrieve messages of a CAN-network (network in a car) using an Dll written in C/C++. This dll is usable as a COM-interface.
My c#-formclass implements one of these ...
0
votes
1answer
118 views
Can't access the COM interface
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. ...