CloseAllDocuments

介紹,示例,

介紹

類: CWinApp
頭檔案:
afxwin.h
功能:
調用這個函式在退出之前關閉所有打開的文檔。
語法:
void CloseAllDocuments(BOOL bEndSession);
參數:
bEndSession 指定Windows會話是否要結束。如果為TRUE,則會話結束;否則為FALSE,會話不結束。
說明:
在調用CloseAllDocuments之前要調用HideApplication.

示例

/**********************************************
演示函式原型: theApp->CloseAllDocuments(TRUE);
程式功能說明: 關閉所有打開的文檔並結束會話。
************************************************/
//派生類
class CMyApp: public CWinApp  
{  public:  CTestApp( );  
CString str;//添加的對話框變數  
...  }
//CMyApp類型指針theApp 
...  }
CMyApp *theApp=(CMyApp *)AfxGetApp( );
//關閉所有打開的文檔並結束會話
theApp->CloseAllDocuments(TRUE);

相關詞條

熱門詞條

聯絡我們