FIX: MODIFY WINDOW SCREEN FILL FILE Command Doesn't Show File

Last reviewed: October 20, 1997
Article ID: Q131832
2.60a MACINTOSH kbprg kbfixlist kbbuglist

The information in this article applies to:

  • Microsoft FoxPro for Macintosh, version 2.6a

SYMPTOMS

Issuing the MODIFY WINDOW SCREEN FILL FILE <picture file> command doesn't cause the fill file to show on the FoxPro screen unless the Command window is moved or some other action is taken to cause the desktop to refresh.

RESOLUTION

Here are two ways to get the fill file to show up:

  • Use the mouse to move the FoxPro Command window. This causes FoxPro to refresh the desktop, and the fill file shows up.

    -or-

  • Issue the following two commands:

       @ 0,0 SAY " "      & note the space between the quotation marks
       CLEAR
    
       The @...SAY command leaves a rectangular space character in front of the
       fill file at the coordinates specified (0,0 above). The CLEAR command
       removes this space.
    
    

STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem was corrected in Visual FoxPro 3.0b for Macintosh.

MORE INFORMATION

This problem will most affect applications that modify the desktop screen at startup. The complete workaround would be to combine the three commands listed below in the program that modifies the desktop screen.

Steps to Reproduce Problem

Do not use the mouse when attempting to reproduce the problem. Using the mouse may cause the Command window to be moved accidentally; then the problem doesn't show up.

In the FoxPro Command window, issue the following commands:

   MODIFY WINDOW SCREEN FILL FILE SYS(2004)+"tutorial:east.pict"
   * Note that the fill file does not appear.

   @ 0,0 SAY " "  & note the space character between the quotation marks.
   CLEAR
   * The fill file should now appear.


Additional reference words: 2.60a VFoxMac FoxMac fixlist3.00b buglist2.60a
KBCategory: kbprg kbfixlist kbbuglist
KBSubcategory: FxprgUdwindow
Keywords : FxprgUdwindow kbbuglist kbfixlist kbprg
Version : 2.60a
Platform : MACINTOSH
Solution Type : kbfix


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.

Last reviewed: October 20, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.