Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T20:56:31Z http://stackoverflow.com/feeds/question/483859 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/483859/invalid-variant-operation-exception-trying-to-access-olevariant-in-delphi-works 0 Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C# Dave 2009-01-27T15:29:41Z 2009-08-14T16:04:58Z <p>I'm trying to access an OleVariant in a callback that is coming from an ActiveX library.</p> <p>Here's what the event handler is defined as in the TLB:</p> <pre><code>procedure(ASender: TObject; var structQSnap: {??structVTIQSnap}OleVariant) of object; </code></pre> <p>Here's the definition of structVTIQSnap in the TLB:</p> <pre><code>structVTIQSnap = packed record bstrSymbol: WideString; bstrListingExch: WideString; bstrLastExch: WideString; fLastPrice: Double; nLastSize: Integer; bstrBbo: WideString; bstrBidExch: WideString; fBidPrice: Double; nBidSize: Integer; bstrAskExch: WideString; fAskPrice: Double; nAskSize: Integer; fHighPrice: Double; fLowPrice: Double; fOpenPrice: Double; fClosePrice: Double; nCumVolume: Integer; bstrTradeCondition: WideString; nQuoteCondition: Integer; bstrCompanyName: WideString; f52WeekHigh: Double; f52WeekLow: Double; fEps: Double; nSharesOutstanding: Integer; nSpCode: Integer; fBeta: Double; bstrExDivDate: WideString; nDivFreq: Integer; fDivAmt: Double; nAvgVolume: Integer; bstrCusip: WideString; fVwap: Double; bstrUpdateTime: WideString; bstrExch: WideString; nSharesPerContract: Integer; end; </code></pre> <p>It compiles fine, but everytime I try to access the bstrSymbol, I get an "Invalid Variant Operation":</p> <pre><code> procedure TForm1.HandleVTIQuoteSnap(ASender: TObject; var structQSnap: OleVariant); var symbol: WideString; begin symbol := structQSnap.bstrSymbol; // this line causes the exception end; </code></pre> <p>How do I access structQSnap and its properties in Delphi?</p> <p>In C#, this function works fine for the event handler:</p> <pre><code> void vtiQ_OnVTIQSnap(ref vtiLib.structVTIQSnap structQSnap) { MessageBox.Show("Got qsnap for " + structQuoteSnap.bstrSymbol); } </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/483859/invalid-variant-operation-exception-trying-to-access-olevariant-in-delphi-works/483914#483914 0 Answer by Jk for Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C# Jk 2009-01-27T15:45:34Z 2009-01-27T15:45:34Z <p>try to look what returns in TVarData(structQSnap).VType ? </p> <p>may be it will work:</p> <pre><code> var symbol: WideString; rec: structVTIQSnap; begin rec := structVTIQSnap(structQSnap); symbol := rec.bstrSymbol; end; </code></pre> http://stackoverflow.com/questions/483859/invalid-variant-operation-exception-trying-to-access-olevariant-in-delphi-works/484000#484000 0 Answer by mj2008 for Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C# mj2008 2009-01-27T16:10:06Z 2009-01-27T16:10:06Z <p>I'm not sure why you are considering the "structVTIQSnap" to be an "OleVariant". Seems an odd translation to me. Could it be that it has been placed into an OleVariant in some form, either as an array or similar? </p> http://stackoverflow.com/questions/483859/invalid-variant-operation-exception-trying-to-access-olevariant-in-delphi-works/484110#484110 1 Answer by mghie for Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C# mghie 2009-01-27T16:33:23Z 2009-01-27T16:33:23Z <p>You could try to typecast the <em>structQSnap</em> to a pointer to this struct. Something like</p> <pre><code>PstructVTIQSnap = ^structVTIQSnap; structVTIQSnap = packed record bstrSymbol: WideString; // other stuff... end; </code></pre> <p>and</p> <pre><code>procedure TForm1.HandleVTIQuoteSnap(ASender: TObject; var structQSnap: OleVariant); var ps: PstructVTIQSnap; symbol: WideString; begi ps := PstructVTIQSnap(structQSnap.VPointer^); symbol := ps.bstrSymbol; ... end; </code></pre> <p>What I do not understand however is the following: I take it from the <em>ref</em> in the C# code that the structure should be marshalled twice, once from the library to the callback, second back to the library. This would mean that the varByRef flag ($4000) needs to be set in VType, but the value you gave in your comment (3484) is much too small?</p> http://stackoverflow.com/questions/483859/invalid-variant-operation-exception-trying-to-access-olevariant-in-delphi-works/484286#484286 7 Answer by TOndrej for Invalid Variant Operation Exception Trying to Access OleVariant in Delphi - Works in C# TOndrej 2009-01-27T17:12:11Z 2009-01-27T17:12:11Z <p>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 declaration named structVTIQSnap or similar in the generated ..._TLB.pas file? Try using that instead of OleVariant, e.g.</p> <pre><code>procedure (ASender: TObject; var structQSnap: structVTIQSnap) of object; </code></pre> <p>The type will probably be declared as a "packed record".</p>