1234567891011121314151617181920212223242526272829 |
- #ifndef __EXCELIMPL_HEADER__
- #define __EXCELIMPL_HEADER__
- #pragma once
- #include <tlhelp32.h>
- #include <io.h>
- #include <odbcinst.h>
- #include <afxdb.h>
- #include "SpreadSheet.h"
- #include <stdio.h>
- #include <windows.h>
- #include <sql.h>
- #include <sqlext.h>
- 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
|