PRB: MODIFY MEMO WINDOW Doesn't Have Window AttributesLast reviewed: June 27, 1995Article ID: Q104864 |
The information in this article applies to:
SYMPTOMSIn 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 testThe window will appear without the following attributes: TITLE, FLOAT, CLOSE, MINIMIZE, and ZOOM.
RESOLUTIONTo 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 testThe 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
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |