ComWordDocument_RU worddocument;
worddocument = new ComWordDocument_RU();
worddocument.open('c:\\уу.dot');
worddocument.InsertFieldValue("CI_AtDate",'Дата рождения');
worddocument.documentSaveAs('файл');
worddocument.GetBookMarksName();
worddocument.tableGoToCell(6, 1);
worddocument.selectionRowCopy();
worddocument.tableGoToCell(9, 1);
worddocument.selectionRowPaste();
|