You need to sign in to do that
Don't have an account?

Render VisualForce Page As PPT
Hi,
Please if anybody can help me in generating PPT from visualforce page with slides break.
Regards
You need to sign in to do that
Don't have an account?
Hi,
Please if anybody can help me in generating PPT from visualforce page with slides break.
Regards
Hi Sidhartha,
You have to use contentType attribute of <apex:page> tag. see below example..
Visualforce Page:
Important :
Hit Kudos if this provides you with useful information and if this is what you where looking for then please mark it as a solution for other benefits.
Thank You,
Hitesh Patel
SFDC Certified Developer & Administrator & Advanced Administrator & Sales cloud consultant
My Blog:- http://mrjavascript.blogspot.in/
Hi Hitesh,
Thnks for your suggestion. With ptt i need to have break in slides. While i am running the code i am getting the ppt generated , but i am not able to open it.
Regards
Here is an idea... You can add Google's doc viewer to the page as an iframe with the url to the ppt.
<iframe src="http://docs.google.com/viewer?url=<<YourPPTUrl>>&embedded=true" width="600" height="780" style="border: none;"></iframe>
Hope this helps!