Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Returns the WHANDLE of the main Visual FoxPro window.
WHANDLE _WMainWindow(void any)
void any; /* Pointer. */
Remarks
Use the _WhToHwnd( ) API Library Routine function to convert the WHANDLE to a Windows HWND.
Example
The following example writes a message to the main Visual FoxPro window.
Visual FoxPro Code
SET LIBRARY TO WMAIN
= EXWMAIN()
C Code
#include <pro_ext.h>
void FAR Example(ParamBlk FAR *parm)
{
WHANDLE wh = _WMainWindow();
_WPutStr(wh, "\nThis is the FoxPro main window or desktop.");
}
FoxInfo myFoxInfo[] = {
{"EXWMAIN", Example, 0, ""},
};
FoxTable _FoxTable = {
(FoxTable FAR *) 0, sizeof(myFoxInfo)/sizeof(FoxInfo), myFoxInfo
};
See Also
_WhToHwnd( ) API Library Routine | Hiding the Main Visual FoxPro Window