www.pudn.com > GSMTest1.rar > TransTestDlg.cpp


// TransTestDlg.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "GSMTest.h" 
#include "TransTestDlg.h" 
#include "TransGL.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CTransTestDlg dialog 
 
 
CTransTestDlg::CTransTestDlg(CWnd* pParent /*=NULL*/) 
	: CDialog(CTransTestDlg::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CTransTestDlg) 
		// NOTE: the ClassWizard will add member initialization here 
	//}}AFX_DATA_INIT 
} 
 
 
void CTransTestDlg::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CTransTestDlg) 
		// NOTE: the ClassWizard will add DDX and DDV calls here 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CTransTestDlg, CDialog) 
	//{{AFX_MSG_MAP(CTransTestDlg) 
	ON_BN_CLICKED(IDC_TRANSGL, OnTransGL) 
	ON_BN_CLICKED(IDC_MSGGL, OnMsggl) 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CTransTestDlg message handlers 
 
void CTransTestDlg::OnTransGL()  
{ 
	//变压器管理 
	CTransGL dlg; 
	dlg.DoModal(); 
} 
 
void CTransTestDlg::OnMsggl()  
{ 
	//短信管理 
	 
}