P
Peter
How do you write a dll that passes back an array.
'For example I create a Recordsset.
Colum A
Value1
Value2
Value3
'Create Array
Dim MyArray(2) as sring
'Assign values
MyArray(0) = ...field("Value1")
MyArray(1) = ...field("Value2")
MyArray(0) = ...field("Value3")
now I want to return all values.... What is the class structure for this...
'For example I create a Recordsset.
Colum A
Value1
Value2
Value3
'Create Array
Dim MyArray(2) as sring
'Assign values
MyArray(0) = ...field("Value1")
MyArray(1) = ...field("Value2")
MyArray(0) = ...field("Value3")
now I want to return all values.... What is the class structure for this...