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 strFileName As String
Dim objProject As Object
Set objProject = CreateObject("MSProject.Application")
strFileName = Application.GetOpenFilename("MS Project (*.mpp),*.mpp", , "Select MS Project File to import from")
objProject.FileOpen Name:=strFileName, NoAuto:=True
'Do whatever you want to with it
objProject.FileClose 0 '0 = Do Not Save File
Set objProject = Nothing