In this:
Code:
Sub MoveIt(ByVal inpStartLoc As Integer, _
ByVal outLength As Integer, _
ByRef buildString As String)
Dim intFrom As Integer = inpStartLoc - 1
Dim intTo As Integer = intFrom + outLength - 1
For k As Integer = intFrom To intTo
buildString &= strInput(k)
Next
End Sub
I don't see any establishment for strInput?
Can you really create a variable in the statement with that construction
Code:
For k As Integer = . . .
Iâve never seen that before. If you cannot, then the reference to k would fail. If you
can do thatââ[u]
cool</u>
!
BTW: (Just a tip) if you choose subject lines that point to the subject of the post, that would be better for you (attracting people who know something about the problem area). It is taken for granted that if you are posting a question you want some help...