1
我使用cxGrid,我想導入一個excel文件到cxgrid。我寫了這個代碼的一個函數。Delphi cxGrid rowcount
但是,它錯了,因爲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;
圍繞着它的cxGrid只是爲了ChartViews,TableViews,CardViews和BandedTableViews的容器。作爲一個容器,它不知道任何有關行和列的內容。 – alzaimar
@alzaimar,我整合了你的評論。 –
只需使用它。這是微不足道的。 – alzaimar