| | |
| | | public: |
| | | int AcceptText() |
| | | { |
| | | return GetDwTable()->AcceptText(); |
| | | return GetDwTable()->AcceptText_(); |
| | | } |
| | | int getNullCell(POINT& p) |
| | | { |
| | |
| | | { |
| | | return GetDwTable()->SetRowSort(colName, colOrder); |
| | | } |
| | | |
| | | public: |
| | | int GetItemInt(int row, int col) |
| | | { |
| | | xstring str = GetItemString(row, col); |
| | | str = str.replace(L",", L""); |
| | | return str.toInt(); |
| | | } |
| | | |
| | | double GetItemDouble(int row, int col) |
| | | { |
| | | xstring str = GetItemString(row, col); |
| | | str = str.replace(L",", L""); |
| | | return str.toDouble(); |
| | | } |
| | | |
| | | int GetItemInt(int row, string col) |
| | | { |
| | | xstring str = GetItemString(row, col); |
| | | str = str.replace(L",", L""); |
| | | return str.toInt(); |
| | | } |
| | | |
| | | double GetItemDouble(int row, string col) |
| | | { |
| | | xstring str = GetItemString(row, col); |
| | | str = str.replace(L",", L""); |
| | | return str.toDouble(); |
| | | } |
| | | |