DOCUMENT:Q141971 08-FEB-2000 [foxpro] TITLE :PRB: Setting PageOrder May Generate an Error PRODUCT :Microsoft FoxPro PROD/VER:WINDOWS:3.0,3.0b OPER/SYS: KEYWORDS: ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Visual FoxPro for Windows, versions 3.0, 3.0b ------------------------------------------------------------------------------- SYMPTOMS ======== Changing the PageOrder property of a page to a value higher than the PageCount property will trigger the error "Expression evaluated to an illegal value." WORKAROUND ========== The PageOrder property should not be greater than the value of the pageframe's PageCount property. STATUS ====== Microsoft is researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available. MORE INFORMATION ================ Steps to Reproduce Behavior --------------------------- 1. Create a new form. 2. Add a pageframe to the form. 3. Set the PageCount property of the pageframe to 0. 4. Create a new program file that contains the following code: SET PROCEDURE TO DO FORM
_SCREEN.FORMS(1).PAGEFRAME1.ADDOBJECT("Page1","Page1") _SCREEN.FORMS(1).PAGEFRAME1.ADDOBJECT("Page2","Page1") _SCREEN.FORMS(1).REFRESH DEFINE CLASS Page1 AS PAGE ADD OBJECT command1 AS COMMANDBUTTON ENDDEFINE 5. Run the program. A form with two pages should appear. 6. In the Command window, type: _SCREEN.FORMS(1).PAGEFRAME1.PAGE1.PAGEORDER=3 The error "Expression evaluated to an illegal value" appears 7. In the Command window, type: _SCREEN.FORMS(1).PAGEFRAME1.PAGE1.PAGEORDER=2 No error appears Additional query words: VFoxWin ====================================================================== Keywords : Technology : kbVFPsearch kbAudDeveloper kbVFP300 kbVFP300b Version : WINDOWS:3.0,3.0b ============================================================================= THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY. Copyright Microsoft Corporation 2000.