RunAutomated,確定是否出現了“/Automation”或“-Automation”選項,這指明伺服器程式是否是由客戶應用程式啟動的。
基本介紹
- 中文名:RunAutomated
- 類:CWinApp
- 頭檔案:afxwin.h
- 語法:BOOL RunAutomated();
介紹,示例,
介紹
類: CWinApp
頭檔案:
afxwin.h
功能:
語法:
BOOL RunAutomated();
返回值:
如果函式找到了該選項,則返回非零值;否則返回零。
說明:
如果出現了“/Automation”或“-Automation”選項,則從命令行中清楚這個選項。
示例
/***********************************************************************
演示函式原型:theApp->RunAutomated();
程式功能說明:判斷是否出現了“/Automation”或“-Automation”選項而執行程式。
***********************************************************************/
//一段例程
class CTestApp : public CWinApp
{ public: CTestApp( );
CString str;//添加的對話框變數
... }
CTestApp *theApp=(CTestApp *)AfxGetApp( );
//判斷是否有Automation選項而執行程式
if(BOOL HR=theApp->RunAutomated())
theApp->str="函式找到了該選項";
else
theApp->str="NULL";
AfxMessageBox(theApp->str);