ACCELERATEABSDI

The ACCELERATEABSDI function prototype defines a callback function to process accelerator keys in a modeless address book dialog box.

Quick Info

Header file: MAPIDEFS.H
Defined function implemented by: MAPI
Defined function called by: Client applications

BOOL (STDMETHODCALLTYPE ACCELERATEABSDI)( 
  ULONG ulUIParam,   
  LPVOID lpvmsg      
);
 

Parameters

ulUIParam
[in] An implementation-specific 32-bit value used for passing user interface information to a function. In applications running on Microsoft Windows, ulUIParam is the parent window handle for a dialog box and is of type HWND, cast to a ULONG. A value of zero indicates there is no parent window.
lpvmsg
[in] Pointer to a Windows message.

Return Values

A function with the ACCELERATEABSDI prototype returns TRUE if it handles the message.

Remarks

A function based on the ACCELERATEABSDI prototype is used only with a modeless dialog, that is, only if the client application has set the DIALOG_SDI flag in the ulFlags member of the ADRPARM structure.

A modeless dialog shares the client application's Windows message loop, instead of having its own loop. The application, which controls the message loop, does not know what accelerator keys the dialog uses, so it calls an ACCELERATEABSDI – based function to test for and act upon accelerator keys such as ctrl+p for printing.

A client's message loop calls the ACCELERATEABSDI – based function when the client invokes a modeless address book dialog box with the IAddrBook::Address method. This calling is terminated when MAPI calls a function based on the DISMISSMODELESS function prototype.