views:

37

answers:

1

Is it possible to detect the version of a powerpoint(PowerPointXP etc) file?

+2  A: 

To detect the version of the PowerPoint application being used:

Sub getVersion()
    Debug.Print Application.Version
End Sub

To detect the version of the PowerPoint file format:

Use DSOfile

Otaku