Tagged Questions

1
vote
2answers
264 views

How can I marshall between XLOPER and VARIANT?

I'm working on an Excel plugin (XLL), which communicates with COM objects. So, I have to marshall between XLOPER and VARIANT. I've got most of this working, but arrays are definitely a pain. I need ...
1
vote
2answers
3k views

How to build a SAFEARRAY of pointers to VARIANTs?

I'm trying to use a COM component with the following method: HRESULT _stdcall Run( [in] SAFEARRAY(BSTR) paramNames, [in] SAFEARRAY(VARIANT *) paramValues ); How can I create in C/C++ ...
1
vote
3answers
954 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 of BSTRs. The code I ...
0
votes
0answers
46 views

How to display #NaN in Excel programatically

I have a COM object interacting with Excel and is able to modify data in the cells using VARIANTS and SAFEARRAYS. What I was wondering is if there was a VARIANT that allowed me to pass in errors to ...
0
votes
1answer
95 views

Accessing a SafeArray of Variants with JNI

I have a VB6 ActiveX DLL with functions that return a Variant. The Variant contains an array of node Variants, each of which contains a string Name and two data arrays (string and double). I am ...
0
votes
2answers
229 views

How to pass a custom struct into a _variant_t in C++ (non-CLI)?

I'm trying to pass a struct e. g.: struct SVec3 { public: float X; float Y; float Z; }; into a _variant_t, to store it in an SAFEARRAY. My approach for that is first creating an ...