ComSetDlg1.cpp
上传用户:yffx2008
上传日期:2014-10-12
资源大小:12414k
文件大小:1k
源码类别:

交通/航空行业

开发平台:

Visual C++

  1. // ComSetDlg1.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "GpsSC.h"
  5. #include "ComSetDlg1.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CComSetDlg dialog
  13. CComSetDlg::CComSetDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CComSetDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CComSetDlg)
  17. m_sBaud = _T("");
  18. m_sDataBits = _T("");
  19. m_sPort = _T("");
  20. m_nParity = -1;
  21. m_nStopBits = -1;
  22. //}}AFX_DATA_INIT
  23. }
  24. void CComSetDlg::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CDialog::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(CComSetDlg)
  28. DDX_CBString(pDX, IDC_BAUD, m_sBaud);
  29. DDX_CBString(pDX, IDC_DATABITS, m_sDataBits);
  30. DDX_CBString(pDX, IDC_PORT, m_sPort);
  31. DDX_CBIndex(pDX, IDC_PARITY, m_nParity);
  32. DDX_CBIndex(pDX, IDC_STOPBITS, m_nStopBits);
  33. //}}AFX_DATA_MAP
  34. }
  35. BEGIN_MESSAGE_MAP(CComSetDlg, CDialog)
  36. //{{AFX_MSG_MAP(CComSetDlg)
  37. //}}AFX_MSG_MAP
  38. END_MESSAGE_MAP()
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CComSetDlg message handlers
  41. BOOL CComSetDlg::OnInitDialog() 
  42. {
  43. CDialog::OnInitDialog();
  44. // TODO: Add extra initialization here
  45. m_ctrlVehcleTelNo.AddString("nihao");
  46. return TRUE;  // return TRUE unless you set the focus to a control
  47.               // EXCEPTION: OCX Property Pages should return FALSE
  48. }