how to check version of power point installed?

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

Mahesh Bhirangi

hi,
I want to convert a power point to set of images. But for different office
installations it has different interfaces.

how can i get the version of office installed on a system and version of
power point with it ?

All suggestions and comments are welcome.

Mahesh
 
Help | About PowerPoint. If your converting a PowerPoint Presentation to images,
then all versions of MSOffice AFAIK, regardless of version will accept .jpg
images.

--
<>Please post all follow-up questions/replies to the newsgroup<>
<><>Email unless specifically requested will not be opened<><>
<><><>Do Provide The Version Of PowerPoint You Are Using<><><>
<><><>Do Not Post Attachments In This Newsgroup<><><>
Michael Koerner [MS PPT MVP]


hi,
I want to convert a power point to set of images. But for different office
installations it has different interfaces.

how can i get the version of office installed on a system and version of
power point with it ?

All suggestions and comments are welcome.

Mahesh
 
thanks for the help.
But i want to
- programmatically check the version of the power point installed on the
system.
- and then call functions to convert the entire presentation into set of
images

Need help on above.

Mahesh
 
A little out of my league. Hopefully one of the programming wizards will step in
and save the day.

--
<>Please post all follow-up questions/replies to the newsgroup<>
<><>Email unless specifically requested will not be opened<><>
<><><>Do Provide The Version Of PowerPoint You Are Using<><><>
<><><>Do Not Post Attachments In This Newsgroup<><><>
Michael Koerner [MS PPT MVP]


thanks for the help.
But i want to
- programmatically check the version of the power point installed on the
system.
- and then call functions to convert the entire presentation into set of
images

Need help on above.

Mahesh
 
You didn't mention the "programatically" part in your first post. That's
always a good idea. ;-)

I'd also guess you're not using VB or VBA to do this. It's a good idea also to
mention the language you're working with.

In VB/VBA, the version of PowerPoint doesn't matter. You simply need to call
the Slide.Export method and specify the desired output file name, filter (ie,
"JPG", "GIF", etc.) and horizontal and vertical sizes (in pixels).



thanks for the help.
But i want to
- programmatically check the version of the power point installed on the
system.
- and then call functions to convert the entire presentation into set of
images

Need help on above.

Mahesh

Michael Koerner said:
Help | About PowerPoint. If your converting a PowerPoint Presentation to images,
then all versions of MSOffice AFAIK, regardless of version will accept ..jpg
images.

--
<>Please post all follow-up questions/replies to the newsgroup<>
<><>Email unless specifically requested will not be opened<><>
<><><>Do Provide The Version Of PowerPoint You Are Using<><><>
<><><>Do Not Post Attachments In This Newsgroup<><><>
Michael Koerner [MS PPT MVP]


hi,
I want to convert a power point to set of images. But for different office
installations it has different interfaces.

how can i get the version of office installed on a system and version of
power point with it ?

All suggestions and comments are welcome.

Mahesh
 
Just in case:
Dim pptApp As PowerPoint.Application
Set pptApp = New PowerPoint.Application

' Set the powerpoint version being used.
getPPTVersion = pptApp.Version

Steve Rindsberg said:
You didn't mention the "programatically" part in your first post. That's
always a good idea. ;-)

I'd also guess you're not using VB or VBA to do this. It's a good idea also to
mention the language you're working with.

In VB/VBA, the version of PowerPoint doesn't matter. You simply need to call
the Slide.Export method and specify the desired output file name, filter (ie,
"JPG", "GIF", etc.) and horizontal and vertical sizes (in pixels).



thanks for the help.
But i want to
- programmatically check the version of the power point installed on the
system.
- and then call functions to convert the entire presentation into set of
images

Need help on above.

Mahesh

Michael Koerner said:
Help | About PowerPoint. If your converting a PowerPoint Presentation
to
images,
then all versions of MSOffice AFAIK, regardless of version will accept ..jpg
images.

--
<>Please post all follow-up questions/replies to the newsgroup<>
<><>Email unless specifically requested will not be opened<><>
<><><>Do Provide The Version Of PowerPoint You Are Using<><><>
<><><>Do Not Post Attachments In This Newsgroup<><><>
Michael Koerner [MS PPT MVP]


hi,
I want to convert a power point to set of images. But for different office
installations it has different interfaces.

how can i get the version of office installed on a system and version of
power point with it ?

All suggestions and comments are welcome.

Mahesh
 
Back
Top