Форум: "Базы";
Текущий архив: 2002.07.18;
Скачать: [xml.tar.bz2];
ВнизКак содержимое StringGrid’а вставить в MS Word??? Найти похожие ветки
← →
Wistner (2002-06-28 02:21) [0]Как содержимое StringGrid’а вставить в MS Word (Можно как-то через OLE, или что-то в этом роде…)
← →
fnatali (2002-06-28 06:05) [1]OLE:=CreateOLEObject("Word.Basic");
OLE.AppShow;
OLE.FileNew;
OLE.TableInsertTable(1,StringGrid1.ColCount,StringGrid1.RowCount);
OLE.TableSelectTable;OLE.CenterPara;
OLE.BorderInside;
OLE.BorderOutside;
for i:=0 to StringGrid1.RowCount-1 do begin
for j:=0 to StringGrid1.ColCount-1 do begin
OLE.Insert(StringGrid1.Cells[j,i]);
OLE.NextCell;
end;
end;
Страницы: 1 вся ветка
Форум: "Базы";
Текущий архив: 2002.07.18;
Скачать: [xml.tar.bz2];
Память: 0.44 MB
Время: 0.006 c