Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Add Multiple Tables to a Word DocumentContent of Add Multiple Tables to a Word Document.vbsMD5 Hash: 2252C4DD6330062C59FC88B445D1715E |
||
Const END_OF_STORY = 6
Set objWord = CreateObject("Word.Application") objWord.Visible = True Set objDoc = objWord.Documents.Add() Set objSelection = objWord.Selection objSelection.TypeText "Table 1" objSelection.TypeParagraph() Set objRange = objSelection.Range objDoc.Tables.Add objRange, 1, 2 Set objTable = objDoc.Tables(1) objTable.Cell(1, 1).Range.Text = "This is cell 1." objTable.Cell(1, 2).Range.Text = "This is cell 2." objSelection.EndKey END_OF_STORY objSelection.TypeParagraph() objSelection.TypeText "Table 2" objSelection.TypeParagraph() Set objRange = objSelection.Range objDoc.Tables.Add objRange, 1, 2 Set objTable = objDoc.Tables(2) objTable.Cell(1, 1).Range.Text = "This is cell 1." objTable.Cell(1, 2).Range.Text = "This is cell 2." objSelection.EndKey END_OF_STORY objSelection.TypeParagraph() | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |