powerpoint

Is it possible to diff PowerPoint version-controlled with git?

旧街凉风 提交于 2020-02-18 05:19:31
问题 I have some PowerPoint documents that I keep version-controlled with git. I want to know what differences are between versions of a file. Text is most important, images and formatting not so much (at least not at this point). 回答1: I wrote this for use with git on the command-line (requires Python and the python-pptx library): """ Setup -- Add these lines to the following files: --- .gitattributes *.pptx diff=pptx --- .gitconfig (or repo\.git\config or your_user_home\.gitconfig) (change the

How can I view a PowerPoint in an ASP.NET application?

谁都会走 提交于 2020-02-08 08:32:09
问题 Does anyone have a PowerPoint viewer which I can embed in an ASP.NET Web App? 回答1: If you are using Silverlight you can use http://pptx2silverlight.codeplex.com/ 回答2: You can't directly embed a PPT/presentation to view. Instead you can try any converter that allows you to embed the PPT slide as images or some other format that the client browser can render to the user. There are few products like GroupDocs viewer or Doconut viewer that do this. You can give it a try. 回答3: You will have to

How can I view a PowerPoint in an ASP.NET application?

社会主义新天地 提交于 2020-02-08 08:32:01
问题 Does anyone have a PowerPoint viewer which I can embed in an ASP.NET Web App? 回答1: If you are using Silverlight you can use http://pptx2silverlight.codeplex.com/ 回答2: You can't directly embed a PPT/presentation to view. Instead you can try any converter that allows you to embed the PPT slide as images or some other format that the client browser can render to the user. There are few products like GroupDocs viewer or Doconut viewer that do this. You can give it a try. 回答3: You will have to

Microsoft Office word powerpoint 中删除MathType加载项后每次启动显示加载错误

混江龙づ霸主 提交于 2020-02-08 01:09:55
1. word 如果还想继续使用MathType,源文件没有删除,那么在Word中禁用就可以了通过:文件——选项——加载项——管理——模板 中找到MathType,然后去掉选中选项就可以了 但是如果想直接删除MathType,在word中也去掉MathType,在我的电脑上加载项中的模板里,MathType是无法直接删除的(好气),那么只能手动删除源文件了,在office安装目录下(我的目录C:\Program Files\Microsoft Office\Office16\STARTUP)找到MathType command for word文件,直接删除就可以了 2. PowerPoint 在卸载了MathType后仍然在PowerPoint启动后出现加载错误项,按照上边的方法找到相应的MathType加载项,禁用就可以了,但是在我的PowerPoint加载项中根本没有MathType加载项,所以不是在这里出错了,在找了网上的一些答案后,尝试了去除注册表信息: 开始——运行——regedit,然后编辑——查找(Ctrl+F),输入提示信息中的全路径或部分路径(注意大小写,而且一定要带上MathType信息,否则可能找的结果太多,太慢),然后将找到的注册表信息直接删除 而在我的电脑中注册表信息是在:HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft

Paste Excel Range into Powerpoint as Table

柔情痞子 提交于 2020-02-07 09:07:09
问题 I am trying to write get write a macro in excel to copy a range of cells from excel to powerpoint. However, I can't seem to figure out the line to paste the range into powerpoint as a table (like right clicking and hitting 'paste') in powerpoint. I tried Activesheet.shapes.paste but that gave me an error about data type I also tried Activesheet.shapes.pastespecial, but none of the options are for pasting as a table as far as I can tell. I do not want to paste as a picture or anything like

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

一笑奈何 提交于 2020-02-03 05:15:38
问题 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 SlideIndex by: Dim w as Long 'slide index variable w = ActivePresentation.Windows(1).Selection.SlideRange(1).SlideIndex The other 0.1% of the time, when ActivePresentation.Windows(1).SelectionType = ppSelectionNone , it will fail, because (understandably) it can't obtain the SlideIndex of the

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

◇◆丶佛笑我妖孽 提交于 2020-02-03 05:14:46
问题 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 SlideIndex by: Dim w as Long 'slide index variable w = ActivePresentation.Windows(1).Selection.SlideRange(1).SlideIndex The other 0.1% of the time, when ActivePresentation.Windows(1).SelectionType = ppSelectionNone , it will fail, because (understandably) it can't obtain the SlideIndex of the

how to convert powerpoint note text to speech with vba

我只是一个虾纸丫 提交于 2020-01-25 21:00:28
问题 I want to write a VBA macro that converts the note text to speech using the native windows speech capability. Anyone done this before? Any tips how to start and proceed? In the end I will need to provide different EU languages for conversion. Thanks John. 回答1: Right, as mentioned above, add a reference in your project to Microsoft Speech Object Library. Then this function will set you on the right path: Function SpeakThis(myPhrase As String) Dim oSpeaker As New SpeechLib.SpVoice ' Set speech

Open Particular Excel Worksheet from Powerpoint via VBA

谁都会走 提交于 2020-01-25 16:41:31
问题 I have a Power Point presentation that contains data pasted into it from Excel using VBA. The data in the excel file is a table that contains hyperlinks to other worksheets within the same workbook. The VBA that creates this as an example is : 'Adds hyperlink to each worksheet user can use to find from powerpoint Range("B2").Select ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:="", SubAddress:= _ "'Title Missing'!A1", TextToDisplay:="Missing Title Tags" This code works just fine - The

Open Particular Excel Worksheet from Powerpoint via VBA

删除回忆录丶 提交于 2020-01-25 16:41:10
问题 I have a Power Point presentation that contains data pasted into it from Excel using VBA. The data in the excel file is a table that contains hyperlinks to other worksheets within the same workbook. The VBA that creates this as an example is : 'Adds hyperlink to each worksheet user can use to find from powerpoint Range("B2").Select ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:="", SubAddress:= _ "'Title Missing'!A1", TextToDisplay:="Missing Title Tags" This code works just fine - The