vote up 0 vote down star

I'm trying to access an OleVariant in a callback that is coming from an ActiveX library.

Here's what the event handler is defined as in the TLB:

procedure(ASender: TObject; var structQSnap: {??structVTIQSnap}OleVariant) of object;

Here's the definition of structVTIQSnap in the TLB:

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;

It compiles fine, but everytime I try to access the bstrSymbol, I get an "Invalid Variant Operation":

 procedure TForm1.HandleVTIQuoteSnap(ASender: TObject; var structQSnap: OleVariant);
 var
    symbol: WideString;
 begin
    symbol := structQSnap.bstrSymbol; // this line causes the exception
 end;

How do I access structQSnap and its properties in Delphi?

In C#, this function works fine for the event handler:

    void vtiQ_OnVTIQSnap(ref vtiLib.structVTIQSnap structQSnap)
    {
        MessageBox.Show("Got qsnap for " + structQuoteSnap.bstrSymbol);            
    }

Any ideas?

flag

Are you sure that structQSnap <> Null? – Scott W Jan 27 at 15:40
Yes, it is not null. – Dave Jan 27 at 15:52

4 Answers

vote up 7 vote down check

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.

procedure (ASender: TObject; var structQSnap: structVTIQSnap) of object;

The type will probably be declared as a "packed record".

link|flag
Hmmm. I can access the bstrSymbol that way. Progress. I'm now accessing some other variables alongside bstrSymbol which is a double - I'm getting -1.97202464873328E111 and the number I'm expecting should be around 40 or so. Any ideas? – Dave Jan 27 at 17:25
Maybe the ActiveX control uses different record alignment. Try using the "packed" directive, or if it's there try commenting it out and experiment with different values for record field alignment in the Compiler Options (or use directives {$A2}, {$A4}). – TOndrej Jan 27 at 17:34
@TOndrej: +1, looks like you are right. – mghie Jan 27 at 17:38
I just removed "packed" from the type definition and it appears to work. Thanks!! – Dave Jan 27 at 17:40
I'm glad I could help, cheers. – TOndrej Jan 27 at 17:44
show 8 more comments
vote up 1 vote down

You could try to typecast the structQSnap to a pointer to this struct. Something like

PstructVTIQSnap = ^structVTIQSnap;
structVTIQSnap = packed record
   bstrSymbol: WideString;
   // other stuff...
end;

and

procedure TForm1.HandleVTIQuoteSnap(ASender: TObject;
  var structQSnap: OleVariant);
var
  ps: PstructVTIQSnap;
  symbol: WideString;
begi
  ps := PstructVTIQSnap(structQSnap.VPointer^);
  symbol := ps.bstrSymbol;
  ...
end;

What I do not understand however is the following: I take it from the ref 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?

link|flag
I've run it a few more times and the VType is showing different values every time. Others are 32420, 13772, 55340 when I just ran it three different times. This line gives: Pointer Type Required ps := PstructVTIQSnap(structQSnap.VPointer^); – Dave Jan 27 at 17:07
That's probably because it isn't a Variant at all; see my answer. – TOndrej Jan 27 at 17:13
vote up 0 vote down

try to look what returns in TVarData(structQSnap).VType ?

may be it will work:

 var
   symbol: WideString;
   rec: structVTIQSnap;
 begin
    rec := structVTIQSnap(structQSnap);
    symbol := rec.bstrSymbol; 
 end;
link|flag
"VType: 3484" is what is returned when I do: ShowMessage('VType: ' + IntToStr(Integer(TVarData(structQSnap).VType))); – Dave Jan 27 at 15:53
structVTIQSnap(structQSnap); says "Invalid Typecast" – Dave Jan 27 at 15:55
some strange VType value.. try to look in system.pas declaration of TVarData.VType, my file(from Delphi6) doesn't contain this value.. also you can try code like: rec := structQSnap; – Jk Jan 27 at 16:03
rec := structQSnap; says "Incompatible types". I don't find anything close to that VType in system.pas. – Dave Jan 27 at 16:16
vote up 0 vote down

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?

link|flag
That's how the TLB defines the procedure for the event handler. I'm just matching what was generated automatically when I imported the type library. – Dave Jan 27 at 16:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.