RWExcelDlg.h
上传用户:xiuanze55
上传日期:2013-06-16
资源大小:85k
文件大小:2k
源码类别:

其他数据库

开发平台:

Visual C++

  1. //////////////////////////////////////////////////////////////////////////////
  2. //类名:CRWExcelDlg
  3. //功能:直接通过ODBC读、写Excel文件示例实现对话框
  4. //作者:徐景周(jingzhou_xu@163.net)
  5. //组织:未来工作室(Future Studio)
  6. //日期:2002.9.1
  7. /////////////////////////////////////////////////////////////////////////////
  8. #if !defined(AFX_RWEXCELDLG_H__1DEC11B4_DE14_45EE_B27E_2860E529C1B1__INCLUDED_)
  9. #define AFX_RWEXCELDLG_H__1DEC11B4_DE14_45EE_B27E_2860E529C1B1__INCLUDED_
  10. #if _MSC_VER > 1000
  11. #pragma once
  12. #endif // _MSC_VER > 1000
  13. #include "WBButton.h" //加入位图按钮类
  14. #include "HyperLink.h" //加入超链接类
  15. #include "PictureEx.h" //加入GIF动态图像显示
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CRWExcelDlg dialog
  18. class CRWExcelDlg : public CDialog
  19. {
  20. // Construction
  21. public:
  22. CRWExcelDlg(CWnd* pParent = NULL); // standard constructor
  23. CString GetExcelDriver(); //获取ODBC中Excel驱动
  24. // Dialog Data
  25. //{{AFX_DATA(CRWExcelDlg)
  26. enum { IDD = IDD_RWEXCEL_DIALOG };
  27. CWBButton m_About;
  28. CListBox m_ExcelList;
  29. CWBButton m_OK;
  30. CWBButton m_Write;
  31. CWBButton m_Read;
  32. //}}AFX_DATA
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CRWExcelDlg)
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. HICON m_hIcon;
  41. // Generated message map functions
  42. //{{AFX_MSG(CRWExcelDlg)
  43. virtual BOOL OnInitDialog();
  44. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  45. afx_msg void OnPaint();
  46. afx_msg HCURSOR OnQueryDragIcon();
  47. afx_msg void OnReadexcel();
  48. afx_msg void OnWriteexcel();
  49. afx_msg void OnAbout();
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_RWEXCELDLG_H__1DEC11B4_DE14_45EE_B27E_2860E529C1B1__INCLUDED_)