| | |
| | | int SetRow(int row) { return getKReport()->SetRow_(row); } |
| | | public: |
| | | int GetColumnCount() { return getKReport()->GetColumnCount_(); } |
| | | LPCTSTR GetColumnName(int col) { return getKReport()->GetColumnName_(col); } |
| | | xstring GetColumnName(int col) { return getKReport()->GetColumnName_(col); } |
| | | int GetColumnIndex(LPCTSTR pColumn) { return getKReport()->GetColumnIndex_(pColumn); } |
| | | public: |
| | | xstring GetItemString(int nRow, int nColumn, kdwgrid::DWBuffer dwBuffer = kdwgrid::dbuf_normal) |
| | |
| | | return getKReport()->AllowSort(sort); |
| | | } |
| | | public: |
| | | int FindByColumn(int startRow, int columnIndex, LPCTSTR columnValue) |
| | | int FindByColumn(int startRow, int columnIndex, xstring columnValue) |
| | | { |
| | | return getKReport()->FindByColumn(startRow, columnIndex, columnValue); |
| | | return getKReport()->FindByColumn(startRow, columnIndex, columnValue.c_str()); |
| | | } |
| | | int FindByColumn(int startRow, LPCTSTR column, LPCTSTR columnValue) |
| | | int FindByColumn(int startRow, xstring column, xstring columnValue) |
| | | { |
| | | return getKReport()->FindByColumn(startRow,column,columnValue); |
| | | return getKReport()->FindByColumn(startRow,column.c_str(), columnValue.c_str()); |
| | | } |
| | | |
| | | int SetReadOnlyColumn(int columnIndex, bool flag = true) |
| | | { |
| | | return getKReport()->SetReadOnlyColumn(columnIndex, flag); |
| | | } |
| | | int SetReadOnlyColumn(LPCTSTR column, bool flag = true) |
| | | int SetReadOnlyColumn(xstring column, bool flag = true) |
| | | { |
| | | return getKReport()->SetReadOnlyColumn(column, flag); |
| | | return getKReport()->SetReadOnlyColumn(column.c_str(), flag); |
| | | } |
| | | |
| | | int SetColumnWidth(int columnIndex, int width = 1) |
| | |
| | | } |
| | | int AcceptText() |
| | | { |
| | | return getKReport()->AcceptText(); |
| | | return getKReport()->AcceptText_(); |
| | | } |
| | | int ShowRowTo(int row) |
| | | { |
| | |
| | | } |
| | | int Redraw() |
| | | { |
| | | return getKReport()->RedrawEx(); |
| | | return getKReport()->Redraw(); |
| | | } |
| | | bool SetRowMove(int row, int movecount) |
| | | { |
| | |
| | | |
| | | bool SetItemDouble(int row, xstring col, double str) |
| | | { |
| | | return SetItemString(row, col.c_str(), xstring(str)); |
| | | return SetItemString(row, col, xstring(str)); |
| | | } |
| | | |
| | | int DataBI(LPCTSTR pSchema = NULL) //数据BI分析 |
| | |
| | | return getKReport()->DataAnalysis(pSchema); |
| | | } |
| | | |
| | | xstring GetItemString(int nRow, xstring ColumnName, kdwgrid::DWBuffer dwBuffer = kdwgrid::dbuf_normal) |
| | | { |
| | | return getKReport()->GetItemString_(nRow, ColumnName.c_str(),dwBuffer); |
| | | } |
| | | |
| | | bool SetItemString(int nRow, int ColumnName, xstring lptStr, kdwgrid::DWBuffer dwBuffer = kdwgrid::dbuf_normal) |
| | | { |
| | | return getKReport()->SetItemString_(nRow, ColumnName, lptStr.c_str(), dwBuffer); |
| | | } |
| | | |
| | | bool SetItemString(int nRow, LPCTSTR ColumnName, xstring lptStr, kdwgrid::DWBuffer dwBuffer = kdwgrid::dbuf_normal) |
| | | { |
| | | return getKReport()->SetItemString_(nRow, ColumnName, lptStr.c_str(), dwBuffer); |
| | | } |
| | | |
| | | bool SetItemString(int nRow, xstring ColumnName,xstring lptStr, kdwgrid::DWBuffer dwBuffer = kdwgrid::dbuf_normal) |
| | | { |
| | | return getKReport()->SetItemString_(nRow, ColumnName.c_str(), lptStr.c_str(), dwBuffer); |
| | | } |
| | | bool SetItemString(int nRow, xstring ColumnName, LPCTSTR lptStr, kdwgrid::DWBuffer dwBuffer = kdwgrid::dbuf_normal) |
| | | { |
| | | return getKReport()->SetItemString_(nRow, ColumnName.c_str(), lptStr, dwBuffer); |
| | | } |
| | | |
| | | xstring GetItemDisplayString(int nRow, xstring ColumnName, kdwgrid::DWBuffer dwBuffer = kdwgrid::dbuf_normal) |
| | | { |
| | | return getKReport()->GetItemDisplayString(nRow, ColumnName.c_str(), dwBuffer); |
| | | } |
| | | |
| | | bool SetItemDisplayString(int nRow, int ColumnName, xstring lptStr, kdwgrid::DWBuffer dwBuffer = kdwgrid::dbuf_normal) |
| | | { |
| | | return getKReport()->SetItemDisplayString(nRow, ColumnName, lptStr.c_str(), dwBuffer); |
| | | } |
| | | |
| | | bool SetItemDisplayString(int nRow, LPCTSTR ColumnName, xstring lptStr, kdwgrid::DWBuffer dwBuffer = kdwgrid::dbuf_normal) |
| | | { |
| | | return getKReport()->SetItemDisplayString(nRow, ColumnName, lptStr.c_str(), dwBuffer); |
| | | } |
| | | |
| | | bool SetItemDisplayString(int nRow, xstring ColumnName, xstring lptStr, kdwgrid::DWBuffer dwBuffer = kdwgrid::dbuf_normal) |
| | | { |
| | | return getKReport()->SetItemDisplayString(nRow, ColumnName.c_str(), lptStr.c_str(), dwBuffer); |
| | | } |
| | | bool SetItemDisplayString(int nRow, xstring ColumnName, LPCTSTR lptStr, kdwgrid::DWBuffer dwBuffer = kdwgrid::dbuf_normal) |
| | | { |
| | | return getKReport()->SetItemDisplayString(nRow, ColumnName.c_str(), lptStr, dwBuffer); |
| | | } |
| | | LPCTSTR GetItemTipString(int nRow, xstring ColumnName, kdwgrid::DWBuffer dwBuffer = kdwgrid::dbuf_normal) |
| | | { |
| | | return getKReport()->GetItemTipString(nRow, ColumnName.c_str(), dwBuffer); |
| | | } |
| | | |
| | | public: |
| | | int openUrl(string aurl) |
| | | { |