SendDataDlg.h
上传用户:zcy791212
上传日期:2013-03-06
资源大小:196k
文件大小:2k
源码类别:

Modem编程

开发平台:

Visual C++

  1. #if !defined(AFX_SENDDATADLG_H__51FAE110_2E48_4AE5_89E5_CDCE36C85629__INCLUDED_)
  2. #define AFX_SENDDATADLG_H__51FAE110_2E48_4AE5_89E5_CDCE36C85629__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // SendDataDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CSendDataDlg dialog
  10. class CSendDataDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CSendDataDlg(CWnd* pParent = NULL,CTreeCtrl* ptc=NULL);  
  15. //operation
  16. public:
  17. void AddUserId();
  18. void SetUserId(char *);
  19. int  StrToHex(char *str,char *hex);
  20. int  HexToStr(char *hex,char *str);
  21. protected:
  22. CComboBox m_cmuserlist;
  23. CString     m_userid;
  24. CTreeCtrl*  m_pTree;
  25.     BOOL     m_hex;
  26. // Dialog Data
  27. //{{AFX_DATA(CSendDataDlg)
  28. enum { IDD = IDD_SENDDATADLG };
  29. //}}AFX_DATA
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CSendDataDlg)
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. // Generated message map functions
  39. //{{AFX_MSG(CSendDataDlg)
  40. afx_msg void OnBquit();
  41. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  42. afx_msg void OnCkhex();
  43. afx_msg void OnSize(UINT nType, int cx, int cy);
  44. afx_msg void OnBsend();
  45. afx_msg void OnTimer(UINT nIDEvent);
  46. afx_msg void OnCkautosend();
  47. afx_msg void OnBcr();
  48. afx_msg void OnBlf();
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54. #endif // !defined(AFX_SENDDATADLG_H__51FAE110_2E48_4AE5_89E5_CDCE36C85629__INCLUDED_)