Jason Coley asks:
> When I do this I get a Incopatible Types TTagArray and TSPropTagArray on
>
> Result := pmp.GetProps(@TagArray, 0, PropCount, Props);
>
> Any ideas?
Yes, lie to the compiler with some casting 8-)
Result := pmp.GetProps(PSPropTagArray(@TagArray), 0, PropCount, Props);
What you doing is defined a larger tag array than the default, but its still
a tag array and the compiler just needs a little poking to get it to believe
you about this.
Cheers, Max.
---------------------------------------------------------------------------
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED]
with body of "unsubscribe delphi"
Web Archive at: http://www.mail-archive.com/delphi%40delphi.org.nz/