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.
Dim wapp As New Word.Application
Dim file_name As String
file_name = ""
wapp.ChangeFileOpenDirectory(System.IO.Path.GetFullPath(file_name))
wapp.Documents.Open( _
FileName:=System.IO.Path.GetFileName(file_name), _
ConfirmConversions:=False, _
ReadOnly:=False, _
AddToRecentFiles:=False, _
PasswordDocument:="", _
PasswordTemplate:="", _
Revert:=False, _
WritePasswordDocument:="", _
WritePasswordTemplate:="", _
Format:=Word.WdOpenFormat.wdOpenFormatAuto)
wapp.Selection.WholeStory()
wapp.Selection.Copy
TextBox1.Paste()