powerpoint

What tutorial you would recommend to study PowerPoint VBA?

I feel I lack some real basics and I feel I would waste your time if ask all those basic questions here. Can you please recommend a good PowerPoint VBA tutorial that would explain basics to me. A tutorial povided with examples is prefered. ...

Is there a future for PowerPoint VBA/VSTO?

Does anyone know what the future holds for VBA/VSTO programming in PowerPoint? I've been working on a Office automation project and find it frustrating to work with PowerPoint in particular since it seems to be one level below VBA support found in Excel or Word. It feels like MS is trying to phase out support for VBA in PowerPointsinc...

How to increase the size of a shape nudge with each new slide in PowerPoint VBA?

This code creates a string of 10 slides, in which each next slide's 2 shapes (number 1 and number 3) are nudged a bit in relation to similar shapes in the previous slide, while one shape (number 2) remains in the same position throughout. Each nudge is equal to 2 points (pixels?), but I wonder how could I modify this code so that each n...

Problems using key emulator in Java

Hello, I am writing some java code so that in the code, when an event happens, it opens Microsoft powerpoint from the program and then emulates some key presses which are defined in the code. My problem is that when I ask it to emulate a key press and pass in the decimal value of the key I want it to emulate, It does it wrong. The code ...

How to import Microsoft Office constants (msoTrue, ppLayoutText...) into LotusScript?

I am trying to programmatically make a PowerPoint presentation from the contents of a Lotus Notes document. This is relatively straight-forward using CreateObject("Powerpoint.Application") but I fail to find a way to access the various constants that are used in VBA. One solution is of course to hard-code the (ten or so) values into my...

Why does this slides-creating loop in VBA PowerPoint not work?

I have tried to create this script that would create 10 empty slides, but it doesn't work for some reason: Sub CreatingSlides() Dim oPresentation As Presentation Set oPresentation = ActivePresentation Dim oSlide As Slide Dim oSlides As SlideRange Dim oShape As Shape Dim slideNumber As Integer Dim myindex As I...

PowerPoint document pulls data points from XML / Excel

What I want to do: Pull information (numbers, words, etc) from fields that are either in an XML document or in an Excel spreadsheet, and embed these values in a text paragraph inside of a PowerPoint presentation. Example: Yearly, the production of product Y has reached <###> thousand units. where <###> is some value pulled fro...

How to restart macro in PowerPoint VBA by changing slides

I am creating a timer in PowerPoint VBA and I would like it to restart when the user presses back on the remote control. For this, I used this sub: Private Sub PPTEvent_SlideShowBegin(ByVal Wn As SlideShowWindow) Call Tmr End Sub But nothing happens when I press back (or left arrow key). I would also like the macro to start when ...

Best way to convert PDF to PowerPoint serverside in .NET

I have a PDF file that I want to convert to PowerPoint using .NET. What is the best tool for the job? The most important part of the conversion is that it looks as similar to the source as possible. Well, that and it can be done programmaticly. ...

How to identify a selected slide is a master slide in PowerPoint 2003 Programmatically

Recently I was working with a code to open a PowerPoint presentation (by vb.net) object and process each slide by slide. If processing slide is not null or a master slide I need to skip and go to the next one. Can anyone show me how to check whether a given slide is a master slide? Is there any way to check it by slide type? Public S...

Using Ignite style lightning talks for brown bag presentations?

Recently, I ran across Ignite and thought that style of presentation (five minutes, 20 slides, rotated automatically after 15 seconds) could work for "brown bag" sessions. It would be a way to take a lunch hour and get through a range of topics for the purpose of knowledge sharing. Because each talk is only five minutes, it could get p...

How can I programmatically create PowerPoint presentations. On Linux. For Free.

I'd like to create a PowerPoint (not Javascript/HTML/PDF/Keynote/.mov) using code (any language, C preferred) for free. (I've seen this SO question which references how to create them in C#) Is this even possible? How can I write the raw bits that make up a PowerPoint file? Any good libraries for doing this? UPDATE The Microsoft Refer...

Convert PowerPoint (ppt) to PDF using C/Objective-C (maybe even on an iPhone)

Greetings, I'd like to convert a PointPoint file to PDF using C/Objective-C (bonus points if you suggest a solution that could run on an iPhone directly). There are a number of Java libraries to work with MSFT files (odftoolkit, apache poi), but I'd really like to perform this operation on an iPhone device. Apple has built in libraries...

In PowerPoint 2007, how can I position a Callout's Tail programatically?

I'm looking at the DrawingML of a PowerPoint 2007 file and this is what it has for the Callout object's coordinates and geometry: <p:spPr> <a:xfrm> <a:off x="2819400" y="5181600"/> // X,Y Position of Callout Box <a:ext cx="609600" cy="457200"/> // Width,Height of Callout Box </a:xfrm> <a:prstGeom prst="wedgeR...

ppt/pptx converter to html or other format

I'm just wondering if anybody knows an open source project devoted to convert ppt (or pptx) file to an easy-to-render format - html, jpg or other picture type, pdf... I've developed some code to start reading an office file (I'm talking about the Compound Binary File) and now I've started to crack on the internal ppt streams like Pictur...

How do I open PowerPoint files in the browser?

I want to open and show PowerPoint files in web browsers? How do I do that? ...

How to programmaticaly extract and manipulate images from an Office file ?

I need to extract some images from PowerPoint and Word documents, in order to manipulate them, and after that, put the images back in the MS Office files. Do you know any Java or C++ library that does this? It is better if it's open-source. ...

Reading .ppt (MS PowerPoint) file in Cocoa Touch

Hi All, Any idea how to read a .ppt file in Cocoa Touch ? I tried to load the contents of the file in UIWebView but it didn't work. Here is the code : [aWebView loadData:[NSData dataWithContentsOfFile:filePath] MIMEType:@"application/vnd.ms-powerpoint" textEncodingName:@"utf-8" baseURL:[NSURL fileURLWithPath:f...

PowerPoint 2007 Print Dialog via C#

Hi StackOverflow, We have C# code in a PowerPoint Addin for custom printing. In Office 2003, SendKeys.Send("^+{F12}"); works fine to bring up the Print Dialog after doing some stuff. But in Office 2007 it does not, instead just sending the document to the printer without the dialog. Getting the Dialog is very important. using "^...

How to write PowerPoint slide change to a file?

I want to write to a file every time a slide is changed (next/back) in PowerPoint. With presentation.pps I want to write in the file something like: presentation - slide 1 - 11h04m03s presentation - slide 2 - 11h04m34s Does anyone know how to do this? ...