process.cpp
来自「EVC4下创建和使用ATL控件的例子和讲解」· C++ 代码 · 共 19 行
CPP
19 行
// Process.cpp : Implementation of CProcess
#include "stdafx.h"
#include "Msg_ATL.h"
#include "Process.h"
/////////////////////////////////////////////////////////////////////////////
// CProcess
STDMETHODIMP CProcess::Show()
{
AFX_MANAGE_STATE(AfxGetStaticModuleState())
// TODO: Add your implementation code here
MessageBox(NULL,_T("如果您看到这条信息,\nCOM Server调用成功!"),_T("COM Server测试"),MB_OK);
return S_OK;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?