05-31-2021 10:35 PM
Hi , I'd like to insert the company logo in the PowerPoint template.
Insert the logo from the slide master and it will go off the screen
<- image1
On the slide master, it's on the top left, but on the powerpoint, it looks like image 1.
<- powerpoint
Solved! Go to Solution.
06-04-2021 05:36 PM
Hi Sally,
Would you please send your TDR file and Powerpoint master file that you're using? I'm struggling to reproduce the effect you have documented in screenshots.
Regards,
Brad Turpin
Principal Technical Support Engineer
NI
06-06-2021 07:20 PM
hi, I solved this problem. Thank you
But can't I change the order of the powerpoint? I wonder if I can remove pages of 2,3,4 of PowerPoint if I export it as a powerpoint in the diadem.
06-07-2021 05:02 PM
Hi sally,
If you're exporting to Powerpoint using a script, then you can toggle to FALSE the "UseForPrinting" property of each sheet you want to NOT include in the export to Powerpoint (or image, or PDF, or...)
Report.Sheets(2).UseForPrinting = FALSE
Report.Sheets(3).UseForPrinting = FALSE
Report.Sheets(4).UseForPrinting = FALSE
Call Report.Sheets.ExportToPowerPoint(PowerpointFilePath)
Brad Turpin
Principal Technical Support Engineer
NI
06-07-2021 07:18 PM
Thank you.
I have another question.
Can you remove the border of the diagram when exporting it from diadem to powerpoint?
I want to erase the lines on the image. Is it possible?
06-08-2021 08:22 AM - edited 06-08-2021 08:23 AM
Hi sally,
Yes, I always prefer to suppress that border line when I'm exporting to a report file as well. You can open up the TDR file you're using, pop open the "Layout Parameters" dialog for that TDR file, uncheck the "Display Frame" checkbox, then hit "OK" and re-save that TDR file.
Or if you prefer to toggle this setting programmatically, try this:
Report.Settings.Page.BorderVisible = False
Brad Turpin
Principal Technical Support Engineer
NI
06-08-2021 11:13 PM
Hi Brad
Thank you always for your kind explanation.