0
votes
1answer
45 views
Marshaling Delphi 5 OleVariant to C#
I'm trying to use some legacy Delphi 5 DLLs from C# (2.0/3.5). Some of the exported functions are declared as such:
function SimpleExport: OleVariant; stdcall;
function BiDirectio …
0
votes
4answers
126 views
Basic code to Delphi
I'm struggling with the following:
The goal is to parametrize an automation server for openoffice and I'm programming in Delphi.
The piece of basic code I want to translate into …
1
vote
1answer
35 views
OLEVariant to .Net byte[]
I have an OLEVariant disguised as a .Net object that I recieve from a client-side component over the net. I know that the contents are an array of bytes, but I don't know how to co …
2
votes
3answers
959 views
C++ Variant
I'm in the process of creating a class that stores metadata about a particular data source. The metadata is structured in a tree, very similar to how XML is structured. The metad …
1
vote
3answers
374 views
How do I create a variant array of BSTR in Euphoria using EuCOM?
So far I've figured out how to pass Unicode strings, bSTRs, to and from a Euphoria DLL using a Typelib. What I can't figure out, thus far, is how to create and pass back an array o …
0
votes
1answer
34 views
How to make a type safe wrapper around Variant values
I'm working with a OPC Server control that stores data tags as variant types, described by System.Runtime.InteropServices.VarEnum. These types include the following, VT_BSTR (strin …
15
votes
9answers
991 views
How is duck typing different from the old ‘variant’ type and/or interfaces?
I keep seeing the phrase "duck typing" bandied about, and even ran across a code example or two. I am way too lazy busy to do my own research, can someone tell me, briefly:
the d …
1
vote
1answer
75 views
How to marshal .NET string to variant for COM call
I'm using a third-party COM library from C#.
There are get/set methods that take a parameter of type VARIANT (type VT_BSTR).
In the .NET wrapper, these parameters appear as type o …
0
votes
1answer
64 views
How to create propput IDL method .NET interface for COM usage
I am having an issue using a .NET/ComVisible assembly in Excel/VBA. I defined several parameters as "object" in .NET so they will be translated to Variant in VBA since optional par …
1
vote
2answers
81 views
free the variant VarArray
FUNCTION SystemspartsClT.KeyFound(Key : AluCostDict.SystemspartskeyT) : BOOLEAN;
VAR v : Variant;
BEGIN
v := VarArrayCreate([0,1], VarInteger);
v[0] := Key.System;
…
1
vote
13answers
367 views
Function which returns an unknown type
class Test
{
public:
SOMETHING DoIt(int a)
{
float FLOAT = 1.2;
int INT = 2;
char CHAR = 'a';
switch(a)
{
case 1: return INT;
case 2: r …
0
votes
2answers
149 views
Using COM object from C++ that in C#.NET returns object []
I have a COM object that I'm trying to use from C++ (not .NET), and all of the example programs and manual are written assuming the use of C#.NET or VB.NET. COM is new to me so I'm …
2
votes
2answers
159 views
Invalid Variant crash
I have a situation where I've wrapped a Native C++ DLL with C++/CLI for eventual use in C#.
There are a few callback functions that are causing some issues at run time. Particul …
2
votes
3answers
684 views
Why can’t Delphi variants hold objects?
Why can't Delphi variants hold objects? More importantly, what's the reason behind this limitation?
3
votes
2answers
180 views
Delphi: No VarIsBoolean( )-function?
In variants.pas, there is several VarIsXXX( )-functions for type-checking a variant. There is no VarIsBoolean( ), though.
What's your preferred way of checking if a variant is of …
