Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
With oWordApp
.Documents.Add
.Visible = True
'Specify range as beginning line...then add a table 3x4
Set Range = .ActiveDocument.Range(Start:=0, End:=0)
.ActiveDocument.Tables.Add Range:=Range, NumRows:=3, NumColumns:=4
'Set width of cell
.Selection.Tables(1).Columns.Width = InchesToPoints(1.5)
'move down 7 lines...
.Selection.MoveDown Unit:=wdLine, Count:=7
.Selection.TypeParagraph
'insert pagebreak...
.Selection.InsertBreak Type:=wdPageBreak
'get last line in document...
Line = .ActiveDocument.Content.StoryLength - 1
'set range to last line
Set Range = .ActiveDocument.Range(Start:=Line, End:=Line)
' add another table
.ActiveDocument.Tables.Add Range:=Range, NumRows:=17, NumColumns:=17
End With