Tagged Questions

3
votes
2answers
365 views

Return SAFEARRAY of custom interface types to VB6 through COM

Is it possible to return an array of defined interface objects from a C++ COM function (VC6) to a VB6 client? I've scoured the web and haven't been able to come across anything that describes what I ...
3
votes
2answers
886 views

How does one return a local CComSafeArray to a LPSAFEARRAY output parameter?

I have a COM function that should return a SafeArray via a LPSAFEARRAY* out parameter. The function creates the SafeArray using ATL's CComSafeArray template class. My naive implementation uses ...
2
votes
2answers
127 views

Error: “bad variable type” in CComVariant::Copy when iterating through CComSafeArray

CComSafeArray<VARIANT> fields; hr = _tab_file->get_Fields(fields.GetSafeArrayPtr()); for ( LONG i = fields.GetLowerBound(), ie = fields.GetUpperBound(); i <= ie; ++i) { CComVariant ...
2
votes
1answer
223 views

COM SAFEARRAY of GUID's returned from c++ to c#

I'm currently running into an issue of needing to pass a SAFEARRAY(GUID) as a return value from c++ to c# Currently the c# side is using an interop dll generated from tlbimp The idl is: HRESULT ...
2
votes
1answer
698 views

How to create a SafeArray C#?

I need to create a SafeArray to pass to a COM method. How do I create/maintain/destroy a SafeArray in C#? I have never came across SafeArrays before and could not find much with a quick google ...
2
votes
1answer
2k views

Passing a Safearray of custom types from C++ to C#

how can one use a Safearray to pass an array of custom types (a class containing only properties) from C++ to C#? Is using the VT_RECORD type the right way to do it? I am trying in the following way, ...
2
votes
3answers
2k views

What is the correct syntax when passing CComSafeArray to a method expecting SAFEARRAY**

This most likely has a very simple answer, but I can't figure it out. I'm trying to refactor some code that looks like this: SAFEARRAY* psa; long* count; HRESULT hr = ...
1
vote
1answer
72 views

Initializing a SAFEARRAY ref in C# (port from VB?)

I am working with a third-party COM component (i.e. do not have its code). The method in question has the following outline: HRESULT GetTableInfo( [in] BSTR bstrTableName, [in,out] SAFEARRAY(BSTR) ...
1
vote
1answer
236 views

ATL C++ memory leak with safearray of ccomobjects

I find myself in need of help. Now, I'm not all that unfamiliar with C++, but combining it with ATL provides a whole new level of confusion. Anyways, my problem: I (finally) managed to return an array ...
1
vote
1answer
99 views

can safearrays be passed across process boundaries through com objects?

can safearrays be passed across process boundaries through com objects ?
1
vote
2answers
391 views

Pass multidimensional (safe)array from C# to COM

I have a COM object that takes a 0 bounded safearray of two dimensions. I need to pass this array into my C++ COM object. I can pass the VB6 multidim arrays into the C++ side without a problem, but I ...
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
1answer
333 views

How to return an array of .NET objects via a COM method

I have a .NET assembly. It happens to be written in C++/CLI. I am exposing a few objects via COM. Everything is working fine, but I cannot for the life of me figure out how to return an array of my ...
1
vote
2answers
997 views

Properly accessing a SafeArray of VT_UNKNOWN with SafeArrayGetElement

We have a COM component who’s implementation and interface definition exist in managed code but is driven by a native component. The managed component is returning a SafeArray back to the native code ...
1
vote
2answers
849 views

SAFEARRAY of structs

Does anyone know how to create a SAFEARRAY in C++ to house an array of user defined structs?
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
94 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
1answer
783 views

How do I pass an array of structs (containing std:string or BSTR) from ATL to C#. SafeArray? Variant? COM interface question

I have an ATL COM object that I am using from C#. The interface currently looks like: interface ICHASCom : IDispatch{ [id(1), helpstring("method Start")] HRESULT Start([in] BSTR name, ...