powerpoint-2007

Create new Equation Macro in PowerPoint 2007

给你一囗甜甜゛ 提交于 2020-01-05 09:05:11
问题 I'm helping out one of my professors but what should be a simple task is starting to frustrate me. I do not have any experience with Visual Basic used to create macros in MS Office 2007, specifically PowerPoint '07. All I need is a macro for inserting a new equation into a PowerPoint slide, the macro will then be used as a button on the quick access toolbar. The macro should preform these two tasks: 1) On the Insert menu, click Object. 2) In the Object type list, click Microsoft Equation 3.0.

Find and Highlight Text in MS PowerPoint

喜夏-厌秋 提交于 2019-12-11 01:17:59
问题 I used some code from this site to make a macro to do a keyword search on Word docs and highlight the results. I would like to replicate the effect in PowerPoint. Here is my code for Word. Sub HighlightKeywords() Dim range As range Dim i As Long Dim TargetList TargetList = Array("keyword", "second", "third", "etc") ' array of terms to search for For i = 0 To UBound(TargetList) ' for the length of the array Set range = ActiveDocument.range With range.Find ' find text withing the range "active

PowerPoint 2007/2010 VBA ppam Add-In does not show up in VBA editor when open

怎甘沉沦 提交于 2019-12-06 11:08:03
问题 I've created a PowerPoint 2007/2010 VBA Add-In (.ppam) some code in a module. I've also added an XML ribbon (not important, but it shows me that the file is in fact open in PowerPoint). I can click a button in the ribbon I created and it will execute code from my module. cool. When I open the VBA editor (ctrl + F11), the Add-In does not show up. In fact, if I don't have another document open I can't even open the editor. I've tried this in PowerPoint 2007 and 2010. How can I edit the code of

Changing the properties of elements in Office Ribbon using VBA

让人想犯罪 __ 提交于 2019-12-06 03:00:00
问题 I am a beginner in VBA and Office Ribbon UI. I am using Office 2007 and used Custom UI to develop a Ribbon in PPTM. I have added a set of XML like the one below: <group id="myGroup" label="Hello World" visible="false"> <labelControl id="lblUsername" label="Your Username: " /> <labelControl id="lblFullname" label="" /> </group> So, in this Hello World tab, I would like to change its visibility to true and change the the values of lblUsername and lblFullname . Currently this has to be done

PowerPoint 2007/2010 VBA ppam Add-In does not show up in VBA editor when open

不想你离开。 提交于 2019-12-04 15:31:47
I've created a PowerPoint 2007/2010 VBA Add-In (.ppam) some code in a module. I've also added an XML ribbon (not important, but it shows me that the file is in fact open in PowerPoint). I can click a button in the ribbon I created and it will execute code from my module. cool. When I open the VBA editor (ctrl + F11), the Add-In does not show up. In fact, if I don't have another document open I can't even open the editor. I've tried this in PowerPoint 2007 and 2010. How can I edit the code of a PowerPoint Add-In I've already created? I've made many VBA Add-Ins in Excel, but maybe PowerPoint is

Changing the properties of elements in Office Ribbon using VBA

懵懂的女人 提交于 2019-12-04 05:23:20
I am a beginner in VBA and Office Ribbon UI. I am using Office 2007 and used Custom UI to develop a Ribbon in PPTM. I have added a set of XML like the one below: <group id="myGroup" label="Hello World" visible="false"> <labelControl id="lblUsername" label="Your Username: " /> <labelControl id="lblFullname" label="" /> </group> So, in this Hello World tab, I would like to change its visibility to true and change the the values of lblUsername and lblFullname . Currently this has to be done after the previous call by this button: <button id="signin" label="Sign In" image="signin" size="large"

Programmatically extract embedded file from PowerPoint presentation

泪湿孤枕 提交于 2019-11-29 15:28:17
I am working on a VSTO PowerPoint add-in which involves recording and playing sounds. I was requested at the last minute to allow users to pick the device that will play the sound, like Skype does. In general, I don't think it is possible to specify what device PowerPoint should use, except by selecting the default device in the control panel, which I can't do programmatically. However I can recognize the sounds my add-in recorded because they are embedded as SoundEffect in Shapes that I tag. My question is: is it possible to access the .wav file directly - something like the equivalent of

Programmatically extract embedded file from PowerPoint presentation

自作多情 提交于 2019-11-28 09:07:25
问题 I am working on a VSTO PowerPoint add-in which involves recording and playing sounds. I was requested at the last minute to allow users to pick the device that will play the sound, like Skype does. In general, I don't think it is possible to specify what device PowerPoint should use, except by selecting the default device in the control panel, which I can't do programmatically. However I can recognize the sounds my add-in recorded because they are embedded as SoundEffect in Shapes that I tag.