Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
175 views

How to display values from a VARIANT with a SAFEARRAY of BSTRs

I am working on a COM Object library with function that returns a VARIANT with a SAFEARRAY of BSTRs. How can I display the values from this VARIANT instance and save it inside a TStringList? I tried ...
6
votes
1answer
251 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
362 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
3answers
784 views

Marshal safearray of struct inside struct

I have the following code in C++ which I need to be able to call from C#: struct Inner { double data1; double data2; }; struct Outer { double data3; SAFEARRAY innerData; }; int WINAPI ...
3
votes
2answers
881 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
125 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
220 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
691 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
192 views

How can I delete a SAFEARRAY returned from a .NET function in native code?

I'm hosting a .NET library in my C++ program using the following methods, though not an exhaustive list: CorBindToRuntimeEx() GetDefaultDomain() CreateInstance() GetIDsOfNames() And eventually a ...
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
70 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
2answers
127 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
234 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
194 views

How to create a SAFEARRAY in Windows JScript?

I want to create a SAFEARRAY of type byte in Windows JScript. Can you give me some example code or point me in the right direction?
1
vote
2answers
263 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
393 views

.Net Compact Framework - Calling ActiveX Object that uses [out] SAFEARRAY(float) *

In the Compact Framework 3.5, I am attempting to call an ActiveX object that has an IDL function signature: HRESULT MyFunc([out] SAFEARRAY(float) *var) The Interop generation creates the msil ...
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
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
584 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
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
1answer
710 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
292 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++ ...
1
vote
1answer
331 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
992 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
845 views

SAFEARRAY of structs

Does anyone know how to create a SAFEARRAY in C++ to house an array of user defined structs?
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
45 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
93 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
224 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
0answers
90 views

Dynamically passing SAFEARRAY of ints with win32com

I am having trouble interfacing with a COM object. I am using Python and win32com. In particular, I can dynamically use all functions that don't need an array. Doubles, Ints, Strings and Booleans ...
0
votes
4answers
824 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++ ...
0
votes
1answer
449 views

Passing an array of interfaces from C# to C++/CLI

I am trying to pass an array of interfaces from C# to C++/CLI. Here is the code: // *** SafeArrayTesting_PlusPlus.cpp *** #include "stdafx.h" #include <comdef.h> using namespace System; ...
0
votes
1answer
394 views

SafeArrayPutElement method throws System.AccessViolationException

I am trying to pass an array of ints from C# to C++/CLI. Here's my code: // SafeArrayTesting_PlusPlus.cpp #include "stdafx.h" #include <comdef.h> using namespace System; namespace ...
0
votes
1answer
503 views

How to call a .NET COM method with an array from delphi using PSafeArray?

I have an .NET (4.0) interface which is implemented with a ServicedComponent COM+ class: interface DotNetIface { void MethodRef(var System.Guid guid); void MethodArray(System.Guid[] guids, ...
0
votes
1answer
778 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, ...