VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



A Dream

by M. J. Highlander (20 Submissions)
Category: Miscellaneous
Compatability: VB Script
Difficulty: Beginner
Date Added: Wed 3rd February 2021
Rating: (6 Votes)

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 :-)

Rate A Dream

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

Download this snippet    Add to My Saved Code

A Dream Comments

No comments have been posted about A Dream. Why not be the first to post a comment about A Dream.

Post your comment

Subject:
Message:
0/1000 characters