WM_DSA_SHEET_CREATE_NOTIFY message

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.

lParam

Not used.

Return value

Not used.

Requirements

Requirement Value
Minimum supported client
Windows Vista
Minimum supported server
Windows Server 2008

See also

PROPSHEETCFG

DSA_SEC_PAGE_INFO

LocalFree