Is this still an issue?
I just replaced my Kix32.exe 4.50 with 4.52 and suddenly experience the same error on the AScan line. Here's my code:
Code:
$aTmp = Split($FnList, ',')
For Each $ In $aTmp
'$=' $ ? ; verify the iteration value
$P = AScan($UDFNames, $)
'P=' $P ? ; verify the lookup value
It fails on the AScan line.
I have verified that $FnList contains a comma-delimited list, and that $UDFNames contains 110 elements - all valid.
When I run the script on 4.52, it works ONCE, then fails with $P set to nothing. The first match returns 33 in $P, the second should return 37 but returns null. This does not fail when using Kix 4.50.
Glenn
PS - yes, the loops are all properly closed, etc - this is just a code fragment