DIAdem

cancel
Showing results for 
Search instead for 
Did you mean: 

powerpoint export template

Solved!
Go to solution

 

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

 

 

sally23_1-1622516431691.png<-  image1

 

On the slide master, it's on the top left, but on the powerpoint, it looks like image 1.

 

sally23_2-1622518485772.png<- powerpoint 

 

 

 

0 Kudos
Message 1 of 7
(3,595 Views)

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

0 Kudos
Message 2 of 7
(3,506 Views)

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.

0 Kudos
Message 3 of 7
(3,497 Views)

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

0 Kudos
Message 4 of 7
(3,475 Views)

Thank you.
I have another question.
Can you remove the border of the diagram when exporting it from diadem to powerpoint?

 

sally23_0-1623111455736.png

I want to erase the lines on the image. Is it possible?

0 Kudos
Message 5 of 7
(3,469 Views)
Solution
Accepted by sally23

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

0 Kudos
Message 6 of 7
(3,441 Views)

Hi Brad
Thank you always for your kind explanation.

0 Kudos
Message 7 of 7
(3,404 Views)