senduserinputdlg.cpp

来自「VIS H.323 Library V2.1 Release」· C++ 代码 · 共 71 行

CPP
71
字号
/*
  VIS H.323 Video Conference System
      --Sample for VIS H.323 DLL Library 2.1 Release

  For more information,visit our homepage 
  
    [http://www.115studio.com]

  or mail to us for tech support and bug report

    [support@115studio.com]

  2000-2004 115Studio
  
  2004-04-05
*/
// SendUserInputDlg.cpp : implementation file
//

#include "stdafx.h"
#include "VISConf.h"
#include "SendUserInputDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CSendUserInputDlg dialog


CSendUserInputDlg::CSendUserInputDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CSendUserInputDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CSendUserInputDlg)
	m_receiver = _T("");
	m_input = _T("");
	//}}AFX_DATA_INIT
}


void CSendUserInputDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CSendUserInputDlg)
	DDX_Text(pDX, IDC_RECEIVER, m_receiver);
	DDX_Text(pDX, IDC_INPUT, m_input);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CSendUserInputDlg message handlers

BOOL CSendUserInputDlg::OnInitDialog() 
{
	CDialog::OnInitDialog();
	
	// TODO: Add extra initialization here
	UpdateData(FALSE);
	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 + -
显示快捷键?