共用方式為


CWinApp::OnDDECommand

呼叫由架構,在主框架視窗收到 DDE 執行訊息。

virtual BOOL OnDDECommand(
   LPTSTR lpszCommand 
);

參數

  • lpszCommand
    對應用程式接收的 DDE 命令字串的點。

傳回值

如果不是零,則命令會處理;則為 0。

備註

預設實作會檢查以判斷命令是否需要開啟文件,而且,如果是,開啟指定的文件。 當使用者按兩下資料檔案時, Windows 文件管理員通常會將這類 DDE 命令字串。 覆寫這個函式處理其他 DDE 執行命令,例如命令列印。

範例

BOOL CMyApp::OnDDECommand(LPTSTR lpszCommand)
{
   if (CWinApp::OnDDECommand(lpszCommand))
      return TRUE;

   // Handle any DDE commands recognized by your application
   // and return TRUE.  See implementation of CWinApp::OnDDEComand
   // for example of parsing the DDE command string.

   // Return FALSE for any DDE commands you do not handle.
   return FALSE;
 }

需求

Header: afxwin.h

請參閱

參考

CWinApp 類別

階層架構圖

CWinApp::EnableShellOpen