Programatically checking the version of MS Power point installed?

  • Thread starter Thread starter Mahesh Bhirangi
  • Start date Start date
M

Mahesh Bhirangi

I want to know which Office installation and which version of Power point is
installed on the system.

is there any programatic way or any API to find ?

regards,
Mahesh
 
Mahesh
Following snippet tells you the version


Option Explicit
Sub Which_Version()

dim strVersion as string
dim strBuild as string

strVersion = Application.version
strBuild = Application.Build
msgbox "This version of PowerPoint is " & strVersion & " The current
Build is " & strBuild

End sub

Brian Reilly, PowerPoint MVP
 
Back
Top