Re: Search for text

Tech-Archive recommends: Fix windows errors by optimizing your registry



Try function InStr(), something like:
InStr(1, "str_sometext", "building")
The first argument (integer) tells the function to start looking from the first character in "str_sometext". If "building" is indeed found in "str_sometext" the function returns the position where it starts, otherwise it returns 0.


HTH,
Nikos
.