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

📄 ingresoclave.cpp

📁 一个邮件监控程序
💻 CPP
字号:
/*

  IngresoClave.cpp


  Ventana de ingreso de contrase馻 de email.

  Autor: Sergio Scarnatto

*/

#include "stdafx.h"
#include "MailMonitor.h"
#include "IngresoClave.h"

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

/////////////////////////////////////////////////////////////////////////////
// CIngresoClave dialog


CIngresoClave::CIngresoClave(CWnd* pParent /*=NULL*/)
	: CDialog(CIngresoClave::IDD, pParent)
{
  //{{AFX_DATA_INIT(CIngresoClave)
		// NOTE: the ClassWizard will add member initialization here
  //}}AFX_DATA_INIT
}


void CIngresoClave::DoDataExchange(CDataExchange* pDX)
{
  CDialog::DoDataExchange(pDX);
  //{{AFX_DATA_MAP(CIngresoClave)
		// NOTE: the ClassWizard will add DDX and DDV calls here
  //}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CIngresoClave message handlers

void CIngresoClave::OnOK() 
{
  GetDlgItem(IDC_CLAVE)->GetWindowText(m_Clave);
  CDialog::OnOK();
}

BOOL CIngresoClave::OnInitDialog() 
{
  CDialog::OnInitDialog();
  
  GetDlgItem(IDC_CLAVE)->SetFocus();
  GetDlgItem(IDC_CUENTA)->SetWindowText(m_cuenta);
  
  return FALSE;  // 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 + -