|
-
Jan 19th, 2000, 02:15 AM
#1
'Let's say we got:
Dim MyArray(3) as String
MyArray(0) = "A"
MyArray(1) = "B"
MyArray(2) = "C"
MyArray(3) = "D"
'And we want to have One string "ABCD"
'this looks slow and clock cycles hungry
For i = 0 to ubound(MyArray)
MyString = MyString & MyArray(i)
next i
Is there a faster method ?
thank you
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|