Hre’s my problem, I want to convert an variant data to an array. Do you know How I can do this ?
Subject: Convert Variant to array
can you be more specific?
Subject: RE: Convert Variant to array
I have this :
Dim buffer_SendTo As Variant
Dim SendTo_Total () As String
Dim AgendaUNID_Total As Variant
I try to populate an array like this :
buffer_SendTo = Arrayappend(SendTo_Total, doc.SendTo)
After this i must put buffer_SendTo in SentTo_Total.
Subject: Just use SendTo_Total = Arrayappend(SendTo_Total, doc.SendTo)