DOCUMENT:Q102590 06-NOV-1999 [win16sdk] TITLE :Using ReplaceItem() Command in Program Manager DDE PRODUCT :Microsoft Windows Software Development Kit PROD/VER:WINDOWS:3.1 OPER/SYS: KEYWORDS:kb16bitonly ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Windows Software Development Kit (SDK) 3.1 ------------------------------------------------------------------------------- SUMMARY ======= Program Manager has a dynamic-data exchange (DDE) command-string interface that allows other applications to manipulate its group windows. Windows version 3.1 has a new command called ReplaceItem(), which instructs Program Manager to delete an item and replace it with a new item when Program Manager receives a subsequent AddItem() command. MORE INFORMATION ================ The syntax for the ReplaceItem() command is ReplaceItem(ItemName) where ItemName is the name of the item that is to be replaced. The ReplaceItem() command instructs Program Manager to delete the given ItemName and record the position of the deleted item. The next time Program Manager receives an AddItem() command, it adds the new item to this previously recorded position, effectively replacing the deleted item with the new one. For example, Program Manager has a group called "MAIN" with an item called "TEST". To replace the item TEST with a new item "NEW", the following commands must be executed: ShowGroup ("MAIN", 1); //Activate the group first. ReplaceItem ("TEST"); AddItem ("NEW"); The position of the newly added item will be the same as the deleted item (TEST) regardless of what parameters are passed in the AddItem() command. Given that the position (xpos, ypos) of item TEST was (10, 10) in the group MAIN before it was replaced by item NEW, specifying a new (xPos, yPos) position for NEW in the AddItem() command has no effect. Program Manager adds the NEW item at the recorded position (10, 10) in MAIN. Additional query words: 3.10 no32bit ====================================================================== Keywords : kb16bitonly Technology : kbAudDeveloper kbWin3xSearch kbSDKSearch kbWinSDKSearch kbWinSDK310 Version : WINDOWS:3.1 ============================================================================= 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 1999.