The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
19 views

COM: pass reference to a SAFEARRAY

Introduction I want to query a COM function with Qt. I have a documentation but for VB. Nevertheless this doc says: Object.Frequencies DataArray Object -> An object expression that evaluates ...
0
votes
1answer
13 views

Merge two SAFEARRAY's - SafeArrayPutElement memory access violation

I am getting some memory access violation while execute the following code: UINT cDims = 1; SAFEARRAYBOUND rgsabound[1]; long lLbound = 0; long lUbound = 0; rgsabound[0].lLbound = 0; ...
0
votes
1answer
40 views

Equivalent of _variant_t in Qt

I am trying to translate a Visual-C++ code to Qt. Is there an equivalent of _variant_t? The code is: // // Get safarray containing all vectors from multibuffer // _variant_t ...
0
votes
1answer
47 views

C++ COM [in, out] safearrays

I need to call a COM function in C++ that returns a reference to a SAFEARRAY(BSTR). According to this document, it should be: QAxObject object = new QAxObject(...); QStringList list; for(int i=0; ...
1
vote
1answer
66 views

Is this CComSafeArray usage bad?

I have a COM function: GetData(SAFEARRAY ** pRetVal) and following legacy code: CComSafeArray<double> saDataArray; hr = pmyInterface->GetData(&saDataArray.m_psa); ...
0
votes
1answer
78 views

How to implement a SAFEARRAY(long) parameter?

I currently have a C# method in an interface that has the following parameters when viewed in ITypeLib HRESULT _stdcall SomeMethod ([in] Is_interface* inst, [in] SAFEARRAY(long) bid); ...
0
votes
0answers
95 views

How to make SAFEARRAY ** (double pointer)?

I'v got dll which is made from VB 6.0. There is some functions i have to use. Function is double Calc(int num, SAFEARRAY **data) here int num and SAFEARRAY **data is input file and returns double ...
1
vote
0answers
93 views

How to retrieve a safearray (of struct) from COM object via ColdFusion 9

I am attempting to reference a COM object method defined as: IEdmFile7::GetDerivedBOMs Returns the derived (a.k.a. "named" or "saved") bills of materials associated with this file. Prototype: ...
5
votes
2answers
163 views

C# function doesn't update SAFEARRAY

I have a C# function with following signature: int Get1251Bytes(string source, byte[] result, Int32 lengthOfResult) I call it from C++. I was informed by compiler that 2-nd param must have ...
0
votes
1answer
98 views

how do I overload a function in IDL based on array parameter item type?

suppose I had this function defined in IDL like this: [propget, id(6), helpstring("property MyArray")] HRESULT MyArray([out, retval] SAFEARRAY(myEnum)* pVal); and I wanted to create an overload for ...
0
votes
0answers
84 views

Any quick way to convert std::vector to CComSafeArray

Is there any quick way to convert std::vector to CComSafeArray. I'm currently write a piece of code which basically converting 5 or 6 vector to CComSafeArray (not in a iteration). In which, big block ...
0
votes
1answer
84 views

Do I need to call SafeArrayUnLock in this code? [closed]

I'm new member of the team and I read code below. I wonder do I need to call SafeArrayUnLock in the dctor? I tried to search on web without clear clue. So really appreciate your help! Code: class ...
1
vote
0answers
163 views

COM Object that returns SAFEARRAY(Long) causing SafeArrayTypeMismatchException

I write plugins for a program that we use at work using a API Type library they provide. It is a COM object named SCAPI. The COM object was written for VB6 so when I add the reference for it it for ...
1
vote
1answer
220 views

How to get data from a multidimensional PSafeArray?

I need to read data from a PSafeArray in Delphi. That PSafeArray is returned by a method implemented in a DLL developed in C#. This method returns a two dimensional string array string[,]. How to read ...
1
vote
3answers
177 views

How can I read a fstream into an LPSAFEARRAY?

I'm trying to call a method on a managed dll in C++. One of the parameters is a byte array, which the library import translated to LPSAFEARRAY. The byte array/LPSAFEARRAY is intended to be the ...
0
votes
0answers
22 views

SAFEARRAY on Mac APPLE llvm 3.0

I am new to plugin world. I am trying to develop a plugin for both windows and mac. I have created an Interface file which is inherited from IUnknown. In this i have a structure, having one field as ...
0
votes
2answers
451 views

Marshaling a SAFEARRAY of Managed Structures by COM Interop

i am trying to pass an array of struct exported from a c# library to c++ code. the objective is to pass SAFEARRAY of struct from c++ to c#. I have followed instructions from ...
4
votes
2answers
2k views

How to iterate through SAFEARRAY **

how to iterate through C++ safearray pointer to pointer and access its elements. I tried to replicate the solution posted by Lim Bio Liong ...
4
votes
0answers
123 views

Is it possible to marshal ref parameters in SAFEARRAY

public void Exec(out int status, string output) { status = 3; Console.WriteLine("Exec({0}, ...)", status); output = string.Format("Hello from .NET {0}", DateTime.Now); ...
2
votes
1answer
145 views

E_NOINTERFACE while trying to get a class method pointer

I'm calling the C# methods from a C++ unmanaged code. I have a problem with getting a value from a class instance returned in array. I've simplified the code a little bit This is the problematic ...
1
vote
2answers
384 views

Convert/cast SAFEARRAY of IUnknowns to an iterable array of interface pointers

I have the following interface in C# with a class with a same name (without I) implementing it. [ComVisible(true)] [Guid("B2B134CC-70A6-43CD-9E1E-B3A3D9992C3E")] public interface IOrder { long ...
3
votes
2answers
491 views

Error on call COM with PSafeArray in delphi7

I have a procedure that I need to call using COM, which is declared like this in C#: public string ali(int[] num) { string r; r =""; foreach (int a in num) { r = r + ...
3
votes
1answer
2k views

How to pass SAFEARRAY to COM object through IDispatch?

i am trying to call a method of COM object, where one of the documented parameters is an "array of bytes". The actual declartion depends on the per-language documentation you're looking at: in C# ...
0
votes
0answers
204 views

COM out parameter SafeArray of dates, C# input type

IDL Signature: getArray([out] SAFEARRAY(DATE)* dates) COM server code: getArray( SAFEARRAY** dates) { CComSafeArray<DATE> comdate(1); SYSTEMTIME st; st.wDay = 9; st.wMonth = ...
3
votes
2answers
316 views

C++ DLL only reading first char of a string contained in a safearray

I'm trying to figure out how to pass a user defined structure from a VB6 application to a C++ DLL. Here's a sample of my VB6 code : Private Type ObjetVB Rank As Integer Id As String ...
2
votes
1answer
595 views

C# Marshal byte[] to COM SAFEARRAY parameter with “ref object” signature

I've been going round and round in circles on Google on this, and I can find all kinds of discussion, lots of suggestions, but nothing seems to work. I have an ActiveX component which takes an image ...
0
votes
2answers
539 views

COM: Access violation making a SafeArray of BSTRs

The following code worked just fine thank you with one COM client, but with a new client (the updated version of the same software) string_array_to_bstr_safearray_variant throws an access violation ...
1
vote
1answer
193 views

Autogenerated C++ class from COM TypeLib doesn't return SAFEARRAY in method

Let me begin by stating, I'm not a COM developer. I know standard C++, C#, and Java. I have a C# library that will be called from Managed C++. I've added C++ classes using Visual Studio 2010 --> MFC ...
0
votes
1answer
479 views

cannot convert parameter 1 from 'char [25]' to 'SAFEARRAY *'

I have a char sendBuf[sizeof(double)*3 + 1]; in my c++ code. My c# com code method Multicast( byte[] message) takes byte array as argument. so why doesnt the call Multicast(sendBuf) throw this error ...
1
vote
1answer
1k views

Sending and recieving arrays over COM

What is the right way to receive and send arrays over COM? Here's my attempt so far: a safearray of doubles wrapped in a variant. //takes variant holding safearray of doubles //returns a similar ...
0
votes
2answers
1k views

CComSafeArray use

I have a Com function: GetData (SAFEARRAY ** pRetVal) I have the following piece of code: SAFEARRAY *ppData = NULL; hr = pmyInterface->GetData( &ppData ); ...
0
votes
0answers
481 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 ...
7
votes
3answers
2k 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 ...
1
vote
1answer
704 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) ...
2
votes
2answers
870 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. ...
2
votes
2answers
580 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 ...
1
vote
1answer
854 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 ...
0
votes
1answer
374 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
669 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 ...
4
votes
2answers
759 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 ...
7
votes
1answer
885 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 ...
2
votes
2answers
654 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?
3
votes
1answer
3k 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 ...
4
votes
3answers
960 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 ...
2
votes
1answer
477 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 ...
1
vote
2answers
556 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
630 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
151 views

can safearrays be passed across process boundaries through com objects?

can safearrays be passed across process boundaries through com objects ?
3
votes
2answers
7k 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 ...
0
votes
4answers
1k 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++ ...

1 2