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.
Sub test()
Set wdApp = New Word.Application
wdApp.Visible = True
wdApp.WindowState = wdWindowStateMaximize
wdApp.Documents.Add
With wdApp.Selection
.Font.Size = 48
.TypeParagraph
.TypeParagraph
.ParagraphFormat.Alignment = wdAlignParagraphCenter
.TypeText Text:="Appendix"
.TypeParagraph
.Font.Size = 12
.ParagraphFormat.Alignment = wdAlignParagraphLeft
.InsertBreak Type:=wdSectionBreakNextPage
End With
'Finish Up
wdApp.Selection.HomeKey Unit:=wdStory
' wdApp.ActiveDocument.SaveAs FileName:=sAppendix
wdApp.Activate
Set wdApp = Nothing
End Sub