M626
Programmer
- Mar 13, 2002
- 299
Is there a way I can read in a line and returns the number of character in, on that line it finds Chr(34). You can do it in .Net with this but I dont' know how to do it in vb6?
Private Sub Form_Load()
Dim r As String
r = "The weather today is reasonably warm and sunny"
r = r.IndexOf("warm"
MsgBox (r)
End Sub
Private Sub Form_Load()
Dim r As String
r = "The weather today is reasonably warm and sunny"
r = r.IndexOf("warm"

MsgBox (r)
End Sub