windows_programming_notes.nbk: Home | Index | Next Page: WM_DDE_DATA | Previous Page: WM_DDE_ACK


 WM_DDE_ADVISE

A DDE client application posts the WM_DDE_ADVISE message to a DDE server application to request the server to supply an update for a data item whenever the item changes.

To post this message, call the PostMessage function with the following parameters.

    PostMessage( 
      (HWND) hWnd,             // handle to destination window 
      WM_DDE_ADVISE,           // message to send
      (WPARAM) wParam,         // handle to client window (HWND)
      (LPARAM) lParam          // advise and item atom
    );

Parameters

Remarks

If a client application supports more than one clipboard format for a single topic and item, it can post multiple WM_DDE_ADVISE messages for the topic and item, specifying a different clipboard format with each message. Note that a server can support multiple formats only for hot data links, not warm data links.

Requirements


windows_programming_notes.nbk: Home | Index | Next Page: WM_DDE_DATA | Previous Page: WM_DDE_ACK


Notebook exported on Monday, 7 July 2008, 18:56:50 PM Eastern Daylight Time