Hi. I'm trying to pass an array of UDT from Excel to a C++ dll but I have no idea how. My UDT looks like this
And my dll function declaration..
.. which will return a unique Id in string
Code:
Private Type Student
Age As Integer
Name As String
StudentID As String
End Type
Code:
Declare Function RegisterStudent Lib "SimpleDLL.dll" _
(arr() as Student) As String