powerpoint

Data linking between Excel data and Visio/PPt

无人久伴 提交于 2020-01-14 14:58:49
问题 Question: How can we link data from excel sheets to ppt diagrams / visio diagrams ? Diagrams here are data flow diagrams depicting data trasfer between different applications. I am aware that the excel data needs to be formatted but not sure how to go about it and could not find helpful links online. Any light on this would be very helpful. Thank you. 回答1: This can be done in many ways, and with more recent versions (2007 and 2010) you can link data into a Visio diagram without writing any

Subscript out of range error when trying to copy Excel charts to Power Point presentation

喜你入骨 提交于 2020-01-11 09:53:11
问题 I am trying to copy charts from excel to PPT in a PPT macro using a function. Though, when I try to run the function it says "Subscript out of range" on the line indicated below and I am really confused why. Public dlgOpen As FileDialog Public folder As String Public excelApp As Object Public xlWorkBook As Object Public xlWorkBook2 As Object Public PPT As Presentation Public Name1 As String Public Name2 As String Public rng1 As Range Public rng2 As Range Dim NamedRange As Range Public Sub

Embedding a Powerpoint show into a C# application

天大地大妈咪最大 提交于 2020-01-10 15:40:14
问题 I want to be able to embed a powerpoint presentation into a C# form (WinForms). Basically we have a 52' monitor, and the idea is that in one corner we will have a PPT on loop, and then the other 3 corners will be displaying information from the program itself. I had expected this to be straightforward, but it seems I am mistaken. I had been advised to use the WebBrowser control, but this doesn't work and instead treats the powerpoint file as a download, i.e. gives me a "Save, Open" dialog.

Embedding a Powerpoint show into a C# application

别来无恙 提交于 2020-01-10 15:36:53
问题 I want to be able to embed a powerpoint presentation into a C# form (WinForms). Basically we have a 52' monitor, and the idea is that in one corner we will have a PPT on loop, and then the other 3 corners will be displaying information from the program itself. I had expected this to be straightforward, but it seems I am mistaken. I had been advised to use the WebBrowser control, but this doesn't work and instead treats the powerpoint file as a download, i.e. gives me a "Save, Open" dialog.

Powerpoint macro enabled not working for others [closed]

别等时光非礼了梦想. 提交于 2020-01-07 09:34:09
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed last year . I have constructed a macro-enabled Power point presentation, it works on my machine, but when colleagues navigate to the file where it is saved and open it....the macros do not work! When they click on a command button, the presentation clicks to the next sheet, not fires the macro

Convert ppt to png with apache poi

梦想的初衷 提交于 2020-01-07 09:05:26
问题 When I convert ppt to png using follow code: public static void main(String[] args) throws FileNotFoundException, IOException { final String PPT_TEMPLATE = "data/test.pptx"; float scale = 1; XMLSlideShow ppt = new XMLSlideShow(new FileInputStream(PPT_TEMPLATE)); Dimension pgsize = ppt.getPageSize(); int width = (int) (pgsize.width * scale); int height = (int) (pgsize.height * scale); XSLFSlide slide = ppt.getSlides()[5]; BufferedImage img = new BufferedImage(width, height, BufferedImage.TYPE

Convert ppt to png with apache poi

时间秒杀一切 提交于 2020-01-07 09:05:08
问题 When I convert ppt to png using follow code: public static void main(String[] args) throws FileNotFoundException, IOException { final String PPT_TEMPLATE = "data/test.pptx"; float scale = 1; XMLSlideShow ppt = new XMLSlideShow(new FileInputStream(PPT_TEMPLATE)); Dimension pgsize = ppt.getPageSize(); int width = (int) (pgsize.width * scale); int height = (int) (pgsize.height * scale); XSLFSlide slide = ppt.getSlides()[5]; BufferedImage img = new BufferedImage(width, height, BufferedImage.TYPE

How does one define , extract and replace data from a Chart in an existing Powerpoint using Python

雨燕双飞 提交于 2020-01-07 05:34:28
问题 Currently I am using the following code to define and replace Placeholder (Text data) in existing Powerpoint presentations. current_dir = os.path.dirname(os.path.realpath(__file__)) prs = Presentation(current_dir + '/test2.pptx') slides = prs.slides title_slide_layout = prs.slide_layouts[0] slide = slides[0] for shape in slide.placeholders: print('%d %s' % (shape.placeholder_format.idx, shape.name)) title = slide.shapes.title subtitle1 = slide.shapes.placeholders[0] subtitle2 = slide.shapes

How to create PPTX file using power-point-template using Apache POI

不想你离开。 提交于 2020-01-06 21:13:24
问题 Hi I want to create power-point presentation using power-point-template(which may be already exists or may be generated by poi.) for creating power point template file which have a background image in the slides, I write the following code which creates template file which opens in open-office but giving error to opening in Microsoft-power-point. The Code is private static void generatePOTX() throws IOException, FileNotFoundException { String imgPathStr = System.getProperty("user.dir") + "

Make a Powerpoint \ PDF to call back home

孤街醉人 提交于 2020-01-06 15:33:32
问题 I am Trying to track openings of Powerpoint Documents (ppt \ pptx). i'm looking for a way to make the ppt make some kind of a HTTP GET request for an image of a css file, making t possible to track those requests. is there any way i could make the powerpoint client make an internet request on openeing of a ppt \ pptx object? also - same question for PDF files (if i am supposed to post a different question, let me know) (there are ways to make this thing with doc and xls) ** Hope this one is