PRB: MODIFY MEMO WINDOW Doesn't Have Window Attributes

Last reviewed: June 27, 1995
Article ID: Q104864
The information in this article applies to:
  • Microsoft FoxPro for Windows, versions 2.5, 2.5a, and 2.5b

SYMPTOMS

In FoxPro versions 2.5, 2.5a, and 2.5b for Windows, the MODIFY MEMO <fields> WINDOW <window name> command will cause the window that is displayed to have none of the attributes in the DEFINE WINDOW command. For example:

   DEFINE WINDOW test FROM 10,20 TO 20,50 TITLE "MYTITLE" SYSTEM ;
   FLOAT ZOOM MINIMIZE CLOSE

   MODIFY MEMO <memo field> WINDOW test

The window will appear without the following attributes: TITLE, FLOAT, CLOSE, MINIMIZE, and ZOOM.

RESOLUTION

To avoid this behavior, add the GROW clause. For example, the following code executes as expected:

   DEFINE WINDOW test FROM 10,20 TO 20,50 TITLE "MYTITLE" SYSTEM ;
   FLOAT ZOOM MINIMIZE CLOSE GROW

   MODIFY MEMO <memo field> WINDOW test

The TITLE, FLOAT, ZOOM, MINIMIZE, and CLOSE attributes should be visible. If the SYSTEM and GROW clauses are excluded, the window will have a half- height title bar and no scroll bars. However, if the SYSTEM attribute is added without GROW, all the attributes that were placed in the DEFINE WINDOW clause will not be visible.


Additional reference words: FoxWin 2.50 2.50a 2.50b
KBCategory: kbprg kbprb
KBSubcategory: FxprgGeneral


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: June 27, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.