SetupDlg.cpp
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

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