open not as readonly

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
 
G

Graham Mandeno

Hi Scott

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top