Search Results

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

COM server AnsiString parameters in Delphi 2009

You can modify the generated code yourself. The easiest way is probably to redeclare PChar: type PChar = PAnsiChar; on top of the generated unit. Or just …
1
vote

How to get the current logged on user, including domain in Delphi 2009?

Perhaps your IADsWinNTSystemInfo approach (from the linked previous question) returns current process' account information, but ASP.NET is impersonating on a thread level? Try …