All Questions
2 questions
0
votes
0
answers
184
views
Pass String from VBA to C DLL to Modify as a Parameter and Return
My journey learning about C DLL's and their interaction with VBA continues. The setup is I want to pass a string to the C DLL as a parameter, have the DLL modify the string, and return a return code ...
1
vote
3
answers
1k
views
Return string to VBA in MacOSX
I'm currently writing a C dynamic library in MacOSX, the functions are then used in Excel (2011) using the VBA, e.g.:
Declare Function TestF Lib "path_to_lib:mylib.dylib" Alias "test" (ByRef res As ...