class CTNXExcel
{
public:
CTNXExcel();
~CTNXExcel();
void close();
bool newEmpty();
bool open(string sFile);
bool setSheet(int idx);
bool addSheet(string sName);
void setColumnWidth(int iCol,int iw);
void setRowHeight(int iRow, int ih);
int cols();
int rows();
int getSelectHelp(CSelectHelp& help, bool bUserFeild = false, int iStartRow = 0, int iStartCol = 0, int iEndRow = -1, int iEndCol = -1);
string get(int row, int col);
bool checkSheet();
bool set(int row, int col, string v);
bool setDate(int row, int col, string sDate);
bool setNumer(int row, int col, double v);
bool save(string sFile);
};