vote up 0 vote down star

how to pass string array from C/C++ dll to vba (Excel)

dll in Visual Studio

dll is not managed, ATL, etc.

regards Andy

flag

2 Answers

vote up 0 vote down check

One of the ways to handle this is to write your DLL to return a SAFEARRAY of type Byte as the function result (VB arrays are OLE SafeArrays).

To do this you have to read up on the SafeArray APIs and structures. I don't know of it myself, but the main things you'll need are the SAFEARRAYBOUND structure and the SafeArrayCreate API. What the API returns to you, you return to VBA. And you'll be done.

link|flag
not sure if vb strings have bytes as elements? – Andy Jun 12 at 14:59
I found this working: DECLSPEC SAFEARRAY* WINAPI fun() { SAFEARRAY * psa; SAFEARRAYBOUND rgsabound[1]; rgsabound[0].lLbound = 0; rgsabound[0].cElements = 5; psa = SafeArrayCreate(VT_BSTR, 1, rgsabound); SafeArrayLock(psa); LONG idx = 0; SafeArrayPutElement(psa, &idx, SysAllocString(L"la la")); idx = 1; SafeArrayPutElement(psa, &idx, SysAllocString(L"da da")); SafeArrayUnlock(psa); return psa; } thanks for your help – Andy Jun 12 at 15:24
here you are thanks again – Andy Jun 12 at 15:57
vote up 1 vote down

Microsoft wrote a whitepaper many years ago detailing some best practices for writing DLLs to use with VB5/VB6, which of course would also apply to VBA. It is reprinted with permission, and available in the original Word form, here:

Microsoft: Developing DLLs for VB5 http://vb.mvps.org/tips/vb5dll.asp

See section 8 ("Passing and Returning Arrays") for help with this task. There is an example that is written specifically to demonstrate passing and returning arrays of strings.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.