Tagged Questions

6
votes
1answer
255 views

Release SAFEARRAY from c++ DLL and c#

I have a c++ function that gets data and I called it from c#. The function gets a pointer to SAFEARRAY and poplate it with strings (using SysAllocString) Everything is ok, but the program is leaking ...
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
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, ...
1
vote
2answers
129 views

Passing string arrays from COM to C#

I need to access C# methods in a COM dll via COM-like interface. One of the method requires an array of strings to be passed as input. Am creating a SAFEARRAY and passing it to the COM Interop. ...
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
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
1answer
1k views

How to create and initialize SAFEARRAY of doubles in C++ to pass to C#

My C# method needs to be invoked from C++ Originally my C# method takes a parameter of type double[], but when calling from C++ it becomes a SAFEARRAY In C++ I need to take data from an array of ...
1
vote
2answers
590 views

Getting value from two dimensional Safearray in C++

Am relatively new to the world of C++. I wish to access the data from a multi-dimensional SAFEARRAY. However when I try to retrieve the value, I get the error 0xC0000005: Access violation reading ...
1
vote
1answer
712 views

How to pass SAFEARRAY of UDTs to unmaged code from C#

I also used VT_RECORD. But didn't got success in passing safearray of UDTs. [ComVisible(true)] [StructLayout(LayoutKind.Sequential)] public class MY_CLASS { ...
1
vote
1answer
293 views

Read Textfile into Safearray

I need to read a textfile and store the data into a Safearray. I tried it with this function: bool Parse::LoadTxtFileIntoSafearray(string* strPath, SAFEARRAY** pByteArray) { bool bReturn = false; ...
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++ ...
0
votes
0answers
16 views

CComSafeArray use

I have the a Com function: GetData (SAFEARRAY ** pRetVal) I have the following piece of code: SAFEARRAY *ppData = NULL; hr = pmyInterface->GetData( &ppData ); CComSafeArray pSafeArgs; ...
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
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 ...
0
votes
4answers
831 views

trouble using unmanaged c++ from c# using dllimport

i am having trouble importing c++ unmanaged dll into C# [winform]. Can someone help? Basically i am just trying to create a safearray of strings in c++ and trying to send it to C#. Here is my c++ ...