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.
ActiveDocument.BuiltInDocumentProperties("Application Name")
Function getAppVersionFromDoc(strPath As String)
Dim ODP As Object, SP As Object
Set ODP = CreateObject("DSOFile.OleDocumentProperties")
ODP.Open strPath, True
Set SP = ODP.SummaryProperties
getAppVersionFromDoc = SP.ApplicationName
ODP.Close
Set SP = Nothing: Set ODP = Nothing
End Function