Directory Services

WM_DSA_SHEET_CREATE_NOTIFY

The WM_DSA_SHEET_CREATE_NOTIFY message is posted to the Active Directory MMC snap-in to create a secondary property sheet.

Note  This message value is not defined in a published header file. To use this message value, define it in the exact format shown.

#define WM_DSA_SHEET_CREATE_NOTIFY (WM_USER + 6)
LRESULT SendMessage(
	(HWND) hwnd, 
	WM_DSA_SHEET_CREATE_NOTIFY,
	(WPARAM) wParam, 
	(LPARAM) lParam);

Parameters

hwnd
The window handle of the snap-in window that will process this message. This handle is obtained from the hwndHidden member of the PROPSHEETCFG structure.
wParam
Contains a pointer to a DSA_SEC_PAGE_INFO structure that defines the secondary property sheet to create. The message receiver must free this memory with the LocalFree function when it is no longer required.

Note  On Windows 2000, this parameter contains a pointer to a DSA_SEC_PAGE_INFO_WIN2K structure instead of a DSA_SEC_PAGE_INFO structure.

lParam
Not used.

Return Values

Not used.

Requirements

Client: Included in Windows XP and Windows 2000 Professional.
Server: Included in Windows Server 2003 and Windows 2000 Server.

See Also

PROPSHEETCFG, DSA_SEC_PAGE_INFO, DSA_SEC_PAGE_INFO_WIN2K, LocalFree