ExcelImpl.h 710 B

1234567891011121314151617181920212223242526272829
  1. #ifndef __EXCELIMPL_HEADER__
  2. #define __EXCELIMPL_HEADER__
  3. #pragma once
  4. #include <tlhelp32.h>
  5. #include <io.h>
  6. #include <odbcinst.h>
  7. #include <afxdb.h>
  8. #include "SpreadSheet.h"
  9. #include <stdio.h>
  10. #include <windows.h>
  11. #include <sql.h>
  12. #include <sqlext.h>
  13. class CExcelImpl
  14. {
  15. public:
  16. CExcelImpl(void);
  17. ~CExcelImpl(void);
  18. static CString GetExcelDriver();
  19. static bool CheckFolderExist(CString strPath);
  20. static BOOL GetDefaultXlsFileName(CString& sExcelFile);
  21. static BOOL MakeSurePathExists( CString &Path, bool FilenameIncluded);
  22. static CString ExportListToExcel(CListCtrl* pList, CString strTitle);
  23. static void ReadExcelToList(CListCtrl* pList, CString strTitle, DWORD &dwListCount);
  24. };
  25. #endif