FIX: ASCAN() Fails to Find Integer Value when Called in a LoopLast reviewed: October 29, 1997Article ID: Q162673 |
The information in this article applies to:
SYMPTOMSThe ASCAN() function may sometimes fail to find an integer value that is present in the searched array when values within the searched array are changed in an iterative loop.
RESOLUTIONAs a workaround, you can convert a value in the scanned array to a character string, then back to a numeric data type, before issuing the ASCAN() function.
laarraysearched[1] = STR(laarraysearched[1]) laarraysearched[1] = INT(VAL(laarraysearched[1]))This must be done in two separate program lines, not all in a single line as in the following:
laarraysearched[1] = INT(VAL(STR(laarraysearched[1]))) STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This problem has been fixed in Visual FoxPro 5.0a.
MORE INFORMATIONThe ASCAN() function should return an element number if the value scanned for is contained in the scanned array. Under specific circumstances, ASCAN() may return a 0 (that is, the value is not found) when seeking an integer value if the searched array has been repeatedly repopulated within an iterative loop. Under these circumstances, ASCAN() functions properly in Visual FoxPro 3.0b. Keywords : fixlist5.00 FxprgGeneral vfoxwin vfpfix5.0a kbprg kbbuglist kbfixlist Version : 5.0 Platform : WINDOWS Issue type : kbbug Solution Type : kbfix |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |