I presume you don't have the same experience with Office documents?
- Andrew Lavinsky
Blog: http://blogs.catapultsystems.com/epm
--
Denis
http://www.amiproject.com Microsoft Project online viewer
If that is not the case, the only other place to look in Project is
Tools/Options/Save (tab) and check the file type there. However, that should
never show you pdf as an option.
--
If this post was helpful, please consider rating it.
Jim Aksel, MVP
Check out my blog for more information:
http://www.msprojectblog.com
Public Sub xxx()
Dim t As Task
Dim counter As Integer
counter = 0
For Each t In ActiveProject.Tasks
If ((t.Milestone = True) And( t.Summary = False)) Then
counter = counter + 1
Next t
MsgBox (counter)
End Sub
This is off the top of my head, so please check the syntax, etc.
If you have external links in your file, add the test t.ExternalTask=False