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

交通/航空行业

开发平台:

Visual C++

  1. // SetupDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "GpsSC.h"
  5. #include "SetCommDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // SetCommDlg dialog
  13. CSetCommDlg::CSetCommDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CSetCommDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(SetCommDlg)
  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 CSetCommDlg::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CDialog::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(SetCommDlg)
  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(CSetCommDlg, CDialog)
  36. //{{AFX_MSG_MAP(SetCommDlg)
  37. //}}AFX_MSG_MAP
  38. END_MESSAGE_MAP()
  39. /////////////////////////////////////////////////////////////////////////////
  40. // SetCommDlg message handlers
  41. BOOL CSetCommDlg::OnInitDialog() 
  42. {
  43. CDialog::OnInitDialog();
  44. // TODO: Add extra initialization here
  45. GetDlgItem(IDC_PORT)->EnableWindow(!m_bConnected);
  46. return TRUE;  // return TRUE unless you set the focus to a control
  47.               // EXCEPTION: OCX Property Pages should return FALSE
  48. }