The part in bold is the part I need help with. I'm using VB 2003 and That line is VB6 code. The Right and Left functions don't apply to VB2003 and I need to know what I can replace that with to get the same result. Here I'm trying to update the displaying of the selected word as the user picks a letter. I have absolutely no clue what would replace it as I haven't used left and right before. Help? Thanks.
Sub Letterpick()
Dim i As Integer
nomatch = True
For i = 1 To length
letter2 = Mid(allwords(rndnum), i, 1)
If letter2 = letter Then
nomatch = False
lblWORD.Text = Left(lblWORD.Text, i - 1) _
& letter2 & Right(lblWORD.Text, length - i)
End If
Next
End If
End Sub