this slowpoke moves

Export StringGrid to Excel Table

uses ExtCtrls, ComObj, Grids

//

procedure TForm1.Button1Click(Sender: TObject);
var
  WordApp, NewDoc, WordTable: OLEVariant;
  iRows, iCols, iGridRows, jGridCols: Integer;
begin
  try
    // Create a Word Instance
    WordApp := CreateOleObject('Word.Application');
  except
    // Error...
    Exit;
  end;

  // Show Word
  WordApp.Visible := True;

  // Add a new Doc
  NewDoc := WordApp.Documents.Add;

  // Get number of columns, rows
  iCols := StringGrid1.ColCount;
  iRows := StringGrid1.RowCount;

  // Add a Table
  WordTable := NewDoc.Tables.Add(WordApp.Selection.Range, iCols, iRows);

  // Fill up the word table with the Stringgrid contents
  for iGridRows := 1 to iRows do
    for jGridCols := 1 to iCols do
      WordTable.Cell(iGridRows, jGridCols).Range.Text :=
        StringGrid1.Cells[jGridCols - 1, iGridRows - 1];

  // Here you might want to Save the Doc, quit Word...

  // ...
  
  // Cleanup...
  WordApp := Unassigned;
  NewDoc := Unassigned;
  WordTable := Unassigned;
end;

Keine Kommentare:

Kommentar veröffentlichen

Beliebte Posts

Translate