I was under the impression that INSERT would allow me to insert an entire string inside another string, but it seems not to behave that way.
I'm trying to build a string that represents a score, and when the score is zero, the string is "00000". When the score is 3298, then the string would read "003298"
I converted 3298 to a string and then used Insert(2, scoreString), but this didn't work.
Dim score As String
score = 3298
Label1.Text = MakeScore(score)
Sub MakeScore(str As String) As String
Do Until str.Length =6
str = 0 & str
Loop
Return str
End Sub