B
berto
I need a makro that shows a list of all projects on the server to open
each project save and close again for update reason (Enterprisefields
are calculated)
This code worked on C: stored projects!
Sub UpDate()
Dim myFiles As String
Dim myPath As String
Const myFolder = "C:\"
myFiles = Dir(myFolder & "*.mpp")
Do Until myFiles = ""
myPath = myFolder & myFiles
FileOpen myPath
...
Application.FileSave
Loop
End Sub
How to make it work on Server stored projects? If I make a macro
recording the server's path is recorded as "<>\". If I use this as path
in my makro there is an error!
Anybody any idea
Thanks
Berto
each project save and close again for update reason (Enterprisefields
are calculated)
This code worked on C: stored projects!
Sub UpDate()
Dim myFiles As String
Dim myPath As String
Const myFolder = "C:\"
myFiles = Dir(myFolder & "*.mpp")
Do Until myFiles = ""
myPath = myFolder & myFiles
FileOpen myPath
...
Application.FileSave
Loop
End Sub
How to make it work on Server stored projects? If I make a macro
recording the server's path is recorded as "<>\". If I use this as path
in my makro there is an error!
Anybody any idea
Thanks
Berto