#ifndef __EXCELIMPL_HEADER__ #define __EXCELIMPL_HEADER__ #pragma once #include #include #include #include #include "SpreadSheet.h" #include #include #include #include class CExcelImpl { public: CExcelImpl(void); ~CExcelImpl(void); static CString GetExcelDriver(); static bool CheckFolderExist(CString strPath); static BOOL GetDefaultXlsFileName(CString& sExcelFile); static BOOL MakeSurePathExists( CString &Path, bool FilenameIncluded); static CString ExportListToExcel(CListCtrl* pList, CString strTitle); static void ReadExcelToList(CListCtrl* pList, CString strTitle, DWORD &dwListCount); }; #endif