⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cerout5.cpp

📁 密钥的管理中心
💻 CPP
字号:
// Cerout5.cpp : implementation file
//

#include "stdafx.h"
#include "bishe.h"
#include "Cerout5.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CCerout5 dialog


CCerout5::CCerout5(CWnd* pParent /*=NULL*/)
	: CDialog(CCerout5::IDD, pParent)
{
	//{{AFX_DATA_INIT(CCerout5)
	//}}AFX_DATA_INIT
}


void CCerout5::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CCerout5)
	DDX_Control(pDX, IDC_ALLVIEW_LIST2, m_allview);
	//}}AFX_DATA_MAP
}

void CCerout5::GetData()
{
	UpdateData(true);
}

BEGIN_MESSAGE_MAP(CCerout5, CDialog)
	//{{AFX_MSG_MAP(CCerout5)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCerout5 message handlers

BOOL CCerout5::OnInitDialog() 
{
	CDialog::OnInitDialog();
	m_allview.SetHorizontalExtent(500);

    char dir[100];
	GetCurrentDirectory(100,dir);
	strcat(dir,"\\Certification");
    CString  Cdir(dir);

	g_Cdir = dir;
	
	
	// TODO: Add extra initialization here
	m_allview.AddString(Cdir);
	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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -