i=fld.instr(0,"1234)
?"i= "; i
8.5 Instr(position to start As Integer, text-to-search As String, substring-to-find As String) As Integer
Returns the position of a substring within a string. Returns 0 if the substring is not found. The first position is 1.
myStr = "test"
InStr( myStr, "t" ) = 1
myStr.InStr( "t" ) = 0
"greubel" wrote:
Ok, if I start at zero and it returns zero, is that a no find ?