open not as readonly

  • Thread starter Thread starter theintern
  • Start date Start date
T

theintern

Can anyone tell me how to program it to open the file, not as a read only? I
can't use a call shell method because somepeople are running OFFICE11 and
others OFFICE12 so the folders for Microsoft project aren't consistent. thus
i have to use the following method, but when doing so it opens it as a
readonly, not allowing me to save changes when i'm done.

thanks!
scott

Public Function TriFilter2()

Dim pr As MSProject.Application

DoCmd.SetWarnings False

Set pr = New MSProject.Application
pr.Visible = False
pr.FileOpen ("U:\Estimating Log\Est Schedule\Take-offIndividual.mpp")

DoCmd.SetWarnings True


End Function
 
Hi Scott

Once again, I suggest you post in the applicable forum - in this case MS
Project.
 
Back
Top