powerpoint

PowerPoint 2007 - Set language on tables, charts etc that contains text

北慕城南 提交于 2019-12-05 04:52:05
So I've got this macro that basically scans each slide in PowerPoint and sets the specified language. Works great. Howerver, it skips containers that aren't text boxes. I'd like it to apply the language on tables, smartart, charts etc. Basically anything that may contain text. Is this even possible? This is the current code: Public Sub changeLanguage() On Error Resume Next 'lang = "English" lang = "Norwegian" 'Determine language selected If lang = "English" Then lang = msoLanguageIDEnglishUK ElseIf lang = "Norwegian" Then lang = msoLanguageIDNorwegianBokmol End If 'Set default language in

Paste a chart from Excel to a specific placeholder in a specific layout. Powepoint 2010

非 Y 不嫁゛ 提交于 2019-12-05 04:35:51
问题 I need to paste multiple charts from excel to powerpoint. I found some excellent VBA code (mainly on Jon Peltier's site). Now my powerpoint template has a number of layouts (e.g. with 1 chart occupying most of the slides or 1 chart and one text box in a slide, etc etc). What I want is the chart to become part of the slide layout so that if I reformat the slide - e.g. I change the layout as in the example given above - the chart will move accordingly. Currently I am able to paste in the spot

Software or Tricks For Live Coding Presentation

拟墨画扇 提交于 2019-12-05 04:25:50
I am going to be giving an intro presentation / training class on Ruby on Rails soon. I would like to make it interesting and engaging while still seeming "polished". Since it's a hands-on class most people will be building an app along with me, I want to be able to show my terminal/editor and show the resulting web pages, however I'd like to not be always switching between windows. Keynote used to have the ability to embed webpages into slides, but it was removed, and PowerPoint Mac support seems iffy. There doesn't seem to be any way to embed a terminal window. Does anyone have a

c# Detect if file has finished being written

[亡魂溺海] 提交于 2019-12-05 02:38:10
问题 I am writing a PowerPoint add-in that FTPs a file that has been converted to a WMV. I have the following code which works fine: oPres.CreateVideo(exportName); oPres.SaveAs(String.Format(exportPath, exportName),PowerPoint.PpSaveAsFileType.ppSaveAsWMV,MsoTriState.msoCTrue); But this kicks off a process within PP which does the file conversion and it immediately goes to the next line of code before the file has finished being written. Is there a way to detect when this file has finished being

Powerpoint content add-in on Windows just show an image in slide show mode instead of a web app

会有一股神秘感。 提交于 2019-12-05 02:23:04
问题 I developed a powerpoint content addin and it works fine on Mac. Then I test it on Windows and found out that when I go to slide show mode, Powerpoint just show an image (a snapshot at the time entering to slide mode) instead of a web app. There is no interaction to the addin on slide show mode, clicking on it just make it move to the next slide. The addin works fine in edit mode though. Strangely, this behaviour is not the same for all Powerpoint (2016) on Windows. I tested on another

Catch mouse events in PowerPoint designer through VSTO

穿精又带淫゛_ 提交于 2019-12-05 02:16:46
问题 I am developing an add-in for PowerPoint (2013) with C# / VSTO. The add-in will work when the user is in design mode, not presentation mode . How can I catch mouse events with regard to shapes/objects on the slides, e.g. mouseOver, mouseDown etc? I want to listen to these events in order to create custom UI located near the objects / shapes. Are there any events I can listen to, or is it necessary to use more advanced methods, such as creating a global mouse listener, translate the

how can I read write edit pptx/docx/xlsx files using PHP?

牧云@^-^@ 提交于 2019-12-05 01:28:46
问题 Is there a library extension available for efficiently handling pptx/docx/xlsx files using PHP? As of now I am more interested in PPTX files. Thanks 回答1: As per what i know, those file formats docx,xlsx,pptx are just zip files. they belong to Office Open XML (OOXML) standard. In PHP we have this library for manipulating this type of zip documents: http://php.net/manual/en/book.zip.php You can find all documentation about this ooxml standard here: http://www.ecma-international.org/publications

VSTO custom taskpane on multi DPI system shows content twice

若如初见. 提交于 2019-12-05 00:11:53
I am building an office addin using VSTO. On systems with multiple monitors with different DPI settings, the contents of my custom task pane is drawn twice on the monitor with the higher DPI settings: Only the smaller version is actually responding to user input. The larger version seems to be simply an upscaled image. I have tried playing around with diverse DPI related settings like: AutoScaleMode on my user control. I tried all options, no change. Setting the process to DPI aware - or not - using SetProcessDpiAwareness . I tried all options, no change. Using an app.manifest and setting

Clear Microsoft Office Add-Ins cache

爱⌒轻易说出口 提交于 2019-12-04 20:41:00
I wrote some code in an add-in for Microsoft PowerPoint 2007. I executed it. It said there was a problem. With help from a fellow member here , I rectified the problem. I compiled the new code and ran it. It still considers the old code and ignores the new one and still throws the same problem. The two versions of code are radically different in that they do not share the variables that the problem reports, thus my reason for being sure that the problem isn't in the code now. Clearly, MS Office is retaining an older version of the binaries somewhere in some cache. How do I clear that and allow

Exporting several HighCharts graphs to Powerpoint slides

两盒软妹~` 提交于 2019-12-04 20:20:20
we are planning to build a Angular based web application which has about 15-20 different charts rendered using HighCharts. The requirement is to export those charts into PPT slides. I know that HighCharts provides an export to image option. We can then embed that image in a PPT slide. We are planning to use Ruby and we have a ruby gem which does that. (We are not restricted to Ruby though, and there is one Node module which does the embed-image-in-ppt as well). Now the challenge is - the client wants all the graphs to be downloaded as PPT upon a single click. This means, HighCharts would not