Delphi cxGrid rowcount

时间:2012-11-20 16:19:29

标签: excel delphi rowcount

我使用cxGrid,我想将一个excel文件导入cxgrid。我把这段代码写成了函数。

但是,它错了,因为cxGrid不知道RowCount和ColCount。 我想知道,我能用什么,有什么相似之处? 帮我! 谢谢!

function Xls_To_cxGrid(AGrid: TcxGrid; AXLSFile: string): Boolean;

const
  xlCellTypeLastCell = $0000000B;
var
  XLApp, Sheet: OLEVariant;
  RangeMatrix: Variant;
  x, y, k, r: Integer;
begin
  Result := False;
  XLApp := CreateOleObject('Excel.Application');
  try
    XLApp.Visible := False;
    XLApp.Workbooks.Open(AXLSFile);
    Sheet := XLApp.Workbooks[ExtractFileName(AXLSFile)].WorkSheets[1];

    Sheet.Cells.SpecialCells(xlCellTypeLastCell, EmptyParam).Activate;
    x := XLApp.ActiveCell.Row;
    y := XLApp.ActiveCell.Column;

      AGrid.RowCount := x;
      AGrid.ColCount := y;

    RangeMatrix := XLApp.Range['A1', XLApp.Cells.Item[X, Y]].Value;
    k := 1;
    repeat
      for r := 1 to y do
        AGrid.Cells[(r - 1), (k - 1)] := RangeMatrix[K, R];
      Inc(k, 1);
      AGrid.RowCount := k + 1;
    until k > x;
    RangeMatrix := Unassigned;

  finally
    if not VarIsEmpty(XLApp) then
    begin
      XLApp.Quit;
      XLAPP := Unassigned;
      Sheet := Unassigned;
      Result := True;
    end;
  end;
end;

1 个答案:

答案 0 :(得分:2)

cxGrid只是ChartViews,TableViews,CardViews和BandedTableViews的容器。作为一个容器,它对行和列一无所知。因为你想要替换一个StringGrid我建议使用(非DB)TableView。

获取TableView ...

  • ...打开网格自定义表单(单击"自定义..."在网格"结构导航器"在表单设计器中)。
  • 转到"观看"选项卡并单击"添加视图..."。选择"表" ("数据库表"!)。
  • 关于"结构"右键单击cxGrid1Level1符号,选择"选择View"和新的TableView。
  • 您现在可以回到"观看"选项卡并删除数据库 TableView(cxGrid1DBTableView1)。

(另请参阅DX帮助主题"网格级别"取消标题"指定关联的网格视图"。)

而不是" RowCount"然后你会使用YourView.DataController.RecordCount。 " ColCount"将是YourView.ColumnCount。您可以使用YourView.DataController.Values[...]访问单元格值。为了加快填充视图,我用

包围它
YourView.DataController.BeginUpdate;
try
  YourView.DataController.RecordCount := x;
  // ...
finally
  YourView.DataController.EndUpdate;
end;