The information in this article applies to:
SUMMARYThe Remarks documentation for the function WinHelp() regarding the fourth parameter (DWORD dWord // other info) incorrectly states: HELP_SETPOPUP_POS Sets the position of the subsequent pop-up window.The function actually expects a POINTS structure, rather than an address to the structure. When you pass an address, a misplaced pop-up menu appears. You can pass the information to WinHelp() by using the MAKELONG macro to set the fourth parameter as follows: dWord = MAKELONG(left,top)where the two parameters represent the desired positions of the pop-up menu. Additional query words: HELP_SETPOPUP_POS WinHelp POINTS
Keywords : kbdocerr |
Last Reviewed: September 11, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |