Jochen,
You got the mention because of this topic:
http://www.kixtart.org/board/ultimatebb.php?ubb=get_topic;f=12;t=000098#000002

Which modified Jens' IsInArray() UDF to return a pointer to the array index, if found. I just modified your modification so that an exact match was not required for success:
Compare IsInArray() -
code:
function IsInArray ($v, $a)
if vartype($a) > 8192
for $i = 0 to ubound($a)
if $v = $a[$i]
$IsInArray = $i exit ()
endif
next
endif
$IsInArray = -1
endfunction

With InStrArray() -
code:
function InStrArray($string, $array)
if vartype($array) >= 8192
for $i = 0 to ubound($array)
if instr($array[$i],$string)
$InStrArray = $i
return
endif
next
endif
$InStrArray = -1
return
endfunction

I removed InStrArray() from my 'final' version I think because of some problem I had with consoles and wkix. They were most likely all self inflicted problems (aren't most?) that I could have solved, but Hey, temp files work too.

I intend to change this again using Shane's 'net send username ""' syntax, (best only on 2k+ networks), which may work better for krabourn, but time has not permitted. It's prime visitor season where I am, don't you know [Wink]
_________________________
Jim
--------------------