J
JustMe
I'm trying the following:
dim str as string
dim loc as integer
str = "This is some (text)"
loc = str.IndexOf("(")
I would think that this should return a value of 13, but it returns zero.
Also, if I try doing the IndexOf method in the immediate window while
debugging I get a 'Parameter is incorrect' error.
Any ideas?
--Terry
dim str as string
dim loc as integer
str = "This is some (text)"
loc = str.IndexOf("(")
I would think that this should return a value of 13, but it returns zero.
Also, if I try doing the IndexOf method in the immediate window while
debugging I get a 'Parameter is incorrect' error.
Any ideas?
--Terry