Search Tools Links Login

A Dream!


Visual Basic 6, or VB Classic

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

About this post

Posted: 2003-06-01
By: ArchiveBot
Viewed: 132 times

Categories

Visual Basic 6

Attachments

No attachments for this post


Loading Comments ...

Comments

No comments have been added for this post.

You must be logged in to make a comment.