senddlg.cpp
来自「这是有关邮件操作的源程序代码,是很有用的源代码」· C++ 代码 · 共 45 行
CPP
45 行
// SendDlg.cpp : implementation file
//
#include "stdafx.h"
#include "SendMail.h"
#include "SendDlg.h"
// CSendDlg dialog
IMPLEMENT_DYNAMIC(CSendDlg, CDialog)
CSendDlg::CSendDlg(CWnd* pParent /*=NULL*/)
: CDialog(CSendDlg::IDD, pParent)
{
}
CSendDlg::~CSendDlg()
{
}
void CSendDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Control(pDX, IDC_ANIMATE, m_ctrlAnimate);
}
BEGIN_MESSAGE_MAP(CSendDlg, CDialog)
END_MESSAGE_MAP()
// CSendDlg message handlers
BOOL CSendDlg::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: Add extra initialization here
m_ctrlAnimate.Open(IDR_AVI);
AfxBeginThread(SendMail,this);
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?