A Dream!
Posted: 2003-06-01
By: ArchiveBot
Viewed: 81
Filed Under:
No attachments for this post
Concat 2 Arrays (My Dream) - a simple function.... the point is that i wrote it in my dream! yes i did!!! and no i'm not stoned :-)
Original Author: M. J. Highlander
Code
Public Function CatArray(ByRef Array1 As Variant, ByRef Array2 As Variant) As Variant
Dim sTemp As String
sTemp = Join(Array1, vbNullChar) & vbNullChar & Join(Array2, vbNullChar)
CatArray = Split(sTemp, vbNullChar)
End Function
Comments on this post
No comments have been added for this post.
You must be logged in to make a comment.