Quantcast
Channel: VBForums - Visual Basic 6 and Earlier
Viewing all articles
Browse latest Browse all 21238

[RESOLVED] Is there a better way to do this

$
0
0
Code:

  Dim n As Long
 
  Dim tempArray() As Byte
  ReDim tempArray(Len(StringData))
     
  For n = 1 To Len(StringData)
    tempArray(n - 1) = Asc(Mid(StringData, n, 1))
  Next n


Viewing all articles
Browse latest Browse all 21238

Trending Articles