Hello there, i have this code that mimic a type-Writer effect using the Picturebox, but this doesn't work with .caption =(label1.caption, form1.caption etc.) is give a error that doesn't support this method or something like that.

How can i make this to work with .captions? thanks

Code:

Private Sub Form_Load()
Timer1.Enabled = 0
Timer1.Interval = 60

Timer1.Enabled = 1
End Sub

Private Sub Timer1_Timer()
Static I&
I = I + 1

If I > Len("text Text") Then
     'Picture1.Cls
     Timer1.Enabled = 0
     'I = 0
End If

Picture1.Print Mid("text ext", I, 1);

End Sub