Questions tagged [powerpoint-2007]

PowerPoint 2007 is the presentation graphics software in the Microsoft 2007 Office suite. With PowerPoint, you can use its easy-to-use predefined layouts, themes, and templates to create dynamic and professional presentations.

PowerPoint 2007 is the presentation graphics software in the Microsoft 2007 Office suite.

With PowerPoint, you can use its easy-to-use predefined layouts, themes, and templates to create dynamic and professional presentations.

73 questions
0
votes
1 answer

Formula added to embedded chart in Powerpoint with VBA is referencing wrong cells

I'm updating charts in Powerpoint 2007 from queries in Access 2007. The charts have been manually added and set up using Insert ~ Object ~ Microsoft Office Excel Chart and should look like this (I've obfuscated the axis labels): The problem My…
Darren Bartrup-Cook
  • 18,362
  • 1
  • 23
  • 45
0
votes
1 answer

Powerpoint 2007 - Inserting dynamic data

so I've found that Powerpoint 2007 has no bookmark functionality. So I can't just insert dynamic data into a presentation. Also, there are no autostart event handler, but I found a way of doing it by editing the XML data. This now works, I've got a…
Kenny Bones
  • 5,017
  • 36
  • 111
  • 174
0
votes
1 answer

Refresh an EmbeddedOLEObject Excel.Sheet.8 in Powerpoint 2007

I'm building an Access database which updates the data within a Powerpoint presentation - mainly charts, with the occasional bit of text. All code is stored in Access, the problem is in the second procedure below. Everything is working fine: I…
Darren Bartrup-Cook
  • 18,362
  • 1
  • 23
  • 45
0
votes
1 answer

Select Shape on SlideMaster in PowerPoint 2007

I am working on a plugin for PowerPoint ,which interacts with it when PowerPoint in SlideMaster view. Depends on content, I need to select Shapes on either SlideMaster or on CustomLayouts. I have managed to Select them on CustomLayouts, but I did…
0
votes
0 answers

Power Point Event

Is there any type of Event in Power point that should be handled when there is changed occurred in Text Box and I click Any where in Power Point Except Text Box and It Should exist in 2007 , 2010, 2013 and above. I handled windowslectionChange but…
0
votes
2 answers

Login scripts - Powerpoint

I have a simple login script that will pull another .bat where it will point to our powerpoint template. Problem is, whenever I use the below, I always get a popup on the second instance which is meant to be hidden, as you can see -y doesn't hide…
Rich88
  • 21
  • 1
  • 3
0
votes
0 answers

HRESULT: 0x800A03EC and PowerPoint -- or -- Better Way to Edit a Chart?

I'm having a bizarre error that I'm trying to figure out: I have a PowerPoint template (.pptx) for a slide off in a shared drive and we always access it in code for our PPT VSTO. Inside that template, there's a slide that contains a chart. We can…
Locke
  • 1,133
  • 11
  • 32
0
votes
1 answer

PowerPoint2007 Shape Object On Focus Event and OnFocus out event

I have been searching, on capturing the event or some property that tells that a shape (text Shape Object) is onfocus. as this will help in capturing the keyboard event, so that if the text changes the rectangle width can be increased. as shown in…
0
votes
2 answers

How to create a custom textbox with set text, font type, font size, font colour in Powerpoint?

I need to create a custom textbox in the active slide with set text, font type, font size, font colour, and bold and italics feature in Powerpoint 2007 using a macro. I am currently using this code: Sub InsertTextBox() Set myDocument =…
user3231160
  • 1
  • 1
  • 1
0
votes
1 answer

How to delete the last return in a PowerPoint field?

I have created a function that allows a user to import one or more text files into a field in PowerPoint. This works really well. The user clicks in the field, clicks the button on the custom menu, selects the files from a list and in they go. The…
Boyplunder
  • 75
  • 1
  • 10
0
votes
1 answer

Copy a shape from a PowerPoint Master slide layout to the cu

In PowerPoint 2010: I would like to create a macro that will copy a shape that I created on one of the layout slides of the master slide, and will paste it to the active slide - the slide that i'm on now when I'm running that macro. (I need it so…
0
votes
2 answers

VBA Powerpoint Grouping Array?

I want to create a code that will resize a selected image, position it accordingly, create 2 text boxes beneath it, and finally group the image and 2 text boxes together. My overall goal is to make 2 additional macros that will do the same function…
user2496177
  • 33
  • 1
  • 4
0
votes
1 answer

Search function in slideshow

I added a search function to my slideshow. The code I am using is If SearchTxt = "social networking" Then ActivePresentation.SlideShowWindow.View.GotoSlide 5 Slide52.SearchBox.Text = "" End If Just repeated over and over, with all the terms and…
0
votes
1 answer

Python: Pause for-loop while application closes

I have a script that I would like to bulk edit powerpoint files with. If I edit files one by one with it, it works great. If I bulk edit them, it fails. I assume this is because the application is not closing before the next file attempts to load,…
Eric
  • 323
  • 4
  • 20
0
votes
2 answers

Upgrading DB from Access 2003 to Access 2007

All, I have been tasked to upgrade an Access from 2003 to 2007. The purpose of the DB is to create a power point presentation of data that is automatically generated from an excel spreadsheet. I am able to import the data, but when trying to…