Visual Basic for Applications (VBA) in Microsoft PowerPoint

learn more… | top users | synonyms

0
votes
0answers
20 views

how to save a pdf without path in vba

I have opened a pdf file who was embedded from powerpoint presentation using the following code line: ActivePresentation.Slides(1).Shapes(1).OLEFormat.DoVerb So it really doesn't have a path that I ...
0
votes
0answers
20 views

Convert long binary file to pdf format using vba

I want to export the pdf embedded in powerpoint presentations. Converting the ppt file to zip file you can see what is inside the file and for images and videos the format doesn't change but I realize ...
0
votes
1answer
27 views

check if a file is saved with vba

I want to give the possibility to save a powerpoint presentation when my macro executes. I don't want it to be mandatory so I will insert a pop up asking if they want to save it. But one problem ...
0
votes
1answer
16 views

export a pdf file from powerpoint with vba

I want to be able to export the PDF files that I insert in my powerpoint presentation using vba. I know that you can add .zip extension to the pptx file (just modifying the name of the file) and then ...
0
votes
0answers
9 views

How to implement original shape button by VSTO or VBA for powerpoint

I want to implement the button to draw own shape in such a way like PowerPoint. Click my Button Mouse cursor becomes cross Click to decide on the location of the upper-left part of shape Click to ...
0
votes
1answer
30 views

MS Forms ComboBox not updating in VBA during run-time

I have a combobox on a userform which is not updating, unless I put a breakpoint and step through the code, or pop a MsgBox, etc. 'MsgBox "", vbInformation Group_Form.CrossVariable_Cbox = groupVar ...
0
votes
0answers
18 views

avoid to appear a pop up while copying files in vba

When I copy the file from a folder to a zip file, for every file it appears a pop up telling that is copying from one place to other. I have to copy a large amount of files (usually more that 300) and ...
0
votes
1answer
18 views

When using a powerpoint macro, certain clips of code will not work yet they should

I was adding a very basic search function to my slideshow but came across a few bugs and was hoping that people here could help me out. The code I am using is If SearchTxt = "social networking" ...
1
vote
0answers
20 views

Using IWebBrowser2 to put Widgets in PowerPoint — Automation Error: Unspecified Error

I created a simple macro to put an HTML widget from Weather.com in to a PowerPoint slide. It is not event-based, but ActionButtons call the ConnectWidget subroutine, when navigating to the slide. ...
2
votes
1answer
25 views

Powerpoint vba to change text gradient?

Is there anything in Powerpoint vba (2007 or 2010) that lets you set or change the gradient colors on a text object (the text itself)? All I can find are presetTextEffect settings. Thanks.
0
votes
0answers
23 views

Using vba with powerpoint photo album addin

I am trying to automate the PowerPoint Photo Album addin with vba. I am running the macro from excel, from where I want to supply the filepath, and I also need to change the album layout. Other than ...
0
votes
1answer
31 views

Updating MS Power Point linked object such as chart or Excel sheet

I have a ppt which is generated every week. I have created a vbscript for updating the linked chart.. but i couldn't find how to identify the excel sheet which i have used for creating the table in ...
0
votes
1answer
30 views

use ffmpeg in vba to change video format

I want to change the video format of the embedded videos that appears in a presentation. I achieve to export the video file to another folder using the following code: Dim Finame As Variant ...
1
vote
2answers
50 views

Is there a way to disable CommandBar Controls in Powerpoint VBA?

I have a PPT Add-In which may fail if a certain ViewType is not maintained. I do not see any PPTEvent which I could trap the change and prevent it (although, if this is possible, please advise!). ...
0
votes
1answer
25 views

vba code works well in 'Normal' view but dosen't work in 'slideshow' in powerpoint 2003

I have a presentation with 6 slides. Slide 5 contains vba / macro codes for rotatechart, change angle etc., The codes work well thru' vba editor 'RUN'in active document.(.ppt) but when put in ...
-1
votes
0answers
24 views

How to import images from a folder on daily basis?

i would like to ask a question. I found similar answers but not so specialized to my needs. I have a ppt file created on Powerpoint 2007. I want to build a macro that can do the following: Import ...
0
votes
0answers
27 views

Autofit DataLabels in Powerpoint Chart

I am using Powerpoint 2010. I am aware of limitations around sizing datalabels, which cannot be done either programmatically or via the UI. I am curiosu why there exists an AutoFit option in the UI, ...
0
votes
1answer
28 views

Export Video from powerpoint using VBA

I want to export a video from powerpoint using VBA. This video was uploaded from the PC and not using links. I saw that this is possible for the images using this line of code: ...
0
votes
1answer
25 views

resize an image stored in a folder

I want to take an image from a folder resize it and store it in the same location with the same name. I saw a lot of examples of how to take an image, resize it and put it inside powerpoint slide but ...
1
vote
1answer
62 views

Unable to Group some shapes in Powerpoint 2010

I am having some difficulty using the .Group method on a ShapeRange. For example, I am not able to Group a table with a textbox, nor am I able to group the slide's title shape with a textbox, etc. I ...
0
votes
1answer
91 views

Use VBA to change the internal margin and/or number format of a PowerPoint table cell

I have a VBA loop that cycles through the selected cells of a PowerPoint table to update the formatting. The following lines work great: With ...
1
vote
1answer
96 views

When to use TextFrame or TextFrame2 in VBA

Example, in Powerpoint: The TextFrame object: Represents the text frame in a Shape object. Contains the text in the text frame and the properties and methods that control the alignment and ...
2
votes
2answers
45 views

How can I get the SlideIndex of a visible Slide in Powerpoint when SelectionType = ppSelectionNone

I have some code that requires me to know what SlideIndex to operate on (e.g., where to insert a new slide, where to insert a ChartObject, etc.). About 99% of the time, I can successfully obtain the ...
0
votes
1answer
53 views

Update PowerPoint pictures using VBA

My day to day work involves creating powerpoints for clients highlighting their campaign performance. Most of the charts have been linked to excel, which saves me a ton of time but I end up spending ...
0
votes
0answers
28 views

How can I stop PowerPoint listboxes from relocating on the slide in presentation mode?

I have a slide with a collection of list boxes|textbox pairs on it. The basic idea is that you click on an item in a listbox and the associated notes appear in the corresponding textbox. It all ...
1
vote
0answers
74 views

Rendering simple html code in Powerpoint text box

I have this string of html code and I want to display it in a Powerpoint Text box properly formatted as per the HTML code using VBA. Any suggestion on how I do that? I inserted some spaces in the ...
1
vote
2answers
96 views

Shape.Height and Shape.Width problems in PowerPoint 2013

I am using a small VBA script to apply some text in the background. The script works fine on PowerPoint 2007 and PowerPoint 2010. However, in PowerPoint 2013, setting Shape.Height and Shape.Width ...
1
vote
1answer
36 views

Falling Mapple Leaves PowerPoint

I want to show falling mapple leaves on a slide of ppt. Its that achievable ? If yes how ? I did try to google but not able to figure out. Thanks for looking into it.
1
vote
0answers
61 views

VBA Power Point Link with excel Updates

I am very new with VBA, i have the power point file to excel - Pivot table and making a macro to that it keep change the povit valuse update the ppt link and save as new name. Actually it is all ...
0
votes
1answer
95 views

How do I export text from only certain shapes in ppt using VBA?

I'm trying to export text from a large ppt. I have figured out how to export but I get all text from all shapes and I'm only interested in certain text. Is there a way to have an IF function that ...
7
votes
4answers
154 views

VBA to Prevent Keyboard Input While a Package Object (XML) is Read into ADODB Stream?

I am developing an application which opens and reads an XML document previously embedded in a PowerPoint presentation, or a Word document. In order to read this object (xmlFile as Object) I have to ...
0
votes
0answers
445 views

Excel to PowerPoint VBA PasteSpecial Keep Source Formatting

I'm trying to copy and paste a range from an Excel document into a PowerPoint slide using VBA. Everything seems to work fine except it's copying the range as an image rather than just keep source ...
0
votes
2answers
41 views

Starting with a TextRange, how do I find the enclosing Shape?

Suppose I have a TextRange object, and I need to find the Shape that contains that TextRange. Normally, I can use the Parent property of the TextRange to get the TextFrame that contains it, and then ...
0
votes
0answers
53 views

create a ribbon button from VBA editor

I want to create a ribbon button from VBA who execute the macro that I created. It would be great also if it can be saved as file to have the option to add the ribbon button in any computer with ...
0
votes
1answer
146 views

Interactive Quiz using ppt

I posted a rubbish question about this before and have gone away and done some work on it to re-ask. Basically I've made a ppt quiz that counts how many correct and incorrect answers a person has ...
1
vote
0answers
60 views

use vba code in visual studio ribbon item

I have been couple of days developing some code in vba to detect different types of shapes, create and zip files and so on... The problem is that now I have to create a ribbon item in visual studio ...
0
votes
1answer
41 views

find the position of a text link in the powerpoint presentation

I want to know if there is a way to get the position where a hyperlink is set. In the case of the Shapes they have top and left values, and I can select hyperlinks with Slides(i).Hyperlinks but I ...
0
votes
1answer
197 views

VBA Error 438 - trying to copy Excel charts to existing Ppt presentation

I'm trying to copy charts from Excel to an existing Powerpoint Template using VBA. This code returns Error 438 - Object doesn't support this property or method: 'Create a new Powerpoint session ...
2
votes
2answers
81 views

Powerpoint Event handling - Prevent New Presentation

I am creating a Powerpoint Add-in. I would like to restrict user from either: Create New Presentation Open an existing Presentation I have used this tutorial/overview to trap the NewPresentation ...
0
votes
0answers
36 views

Edit word text from powerpoint

When I run this in ppt I get a "method size of object _font failed" However when I run the exact same procedure in Word it works just fine. NB wrdDoc has been properly declared and set. Sub ...
0
votes
2answers
145 views

VBA code to save a single slide as a .ppt

I have a code which saves my specified slide as a PNG: Dim userName As String userName = Slide322.TextBox1.Text 'Save slide ActivePresentation.Slides(302).Export _ ...
0
votes
2answers
43 views

VBA POWERPOINT: Shrink Word pictures from powerpoint

This function works when I use it within a word macro to shrink all images to 9.3cm: Sub ShrinkWordImages() Dim iShp As InlineShape For Each iShp In ActiveDocument.InlineShapes ...
0
votes
2answers
342 views

Find the type of a shape

I want to show all the shape types that i have in a powerpoint presentation. I tried with those codes: Private Sub CommandButton1_Click() Dim it As String Dim i As Integer Dim Ctr As Integer ...
0
votes
0answers
51 views

PowerPoint macros - appear animation

I have a list of 19 books in PowerPoint. They are set to appear after each other and some time. Now I'd like to write a macro to show the publishing year on the page when the book title is shown. So ...
1
vote
1answer
47 views

get how many animation I have in my presentation

I want to create a button where counts how many animation/effects has each slice in presentations. I want to put a limit of animations so I need to know how much are in each one. Can it be make with ...
0
votes
2answers
114 views

get format of image and videos in visual basic

I have some images and videos in my powerpoint presentation. Depends of what format have each one (jpg, mp3, jpeg,...) I want it to make a different thing so I need to know what kind of file is it. Is ...
2
votes
2answers
200 views

VBA WORD: Remove SHIFT-ENTER lines

After copying from ppt, you often get lines that look like this: This is a line and then another line and then another and so forth. New lines created via SHIFT-ENTER. Where I need it to say: ...
0
votes
1answer
108 views

VBA POWERPOINT: Copy text with formatting from powerpoint to word

Right now I'm copying text into word like so: wrdDoc.Range.InsertAfter someShapeWithText.TextFrame.TextRange.Text & vbCr & vbCr I want it to copy with formatting i.e. certain words are ...
2
votes
1answer
231 views

VBA PowerPoint: Get all shapes with text

Can't quite figure out what's going wrong here. I get a object variable not set for the last debug.print line. N.B - the debug.print line in the loop prints fine and there are three shaped that should ...
1
vote
1answer
272 views

Find and replace text in audio ppt using macros from excel

i have a project to find and replace words in powerpoint from excel and then save the powerpoint. My code is working fine. But when ppt has mp3 then it giving errors. Please see the code and tell me ...

1 2 3 4 5 8