Hi Scott
Once again, I suggest you post in the applicable forum - in this case MS
Project.
--
Good Luck :-)
Graham Mandeno [Access MVP]
Auckland, New Zealand
"theintern" <(E-Mail Removed)> wrote in message
news:6D97D4F4-B9CB-4556-AEF3-(E-Mail Removed)...
> 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
|