02-10-2011 12:18 PM
How can I stop the execution of a pps presentation in labview? I have a block diagram to run a pps file, but how can I stop the execution?
Solved! Go to Solution.
02-10-2011 12:27 PM
Can you show a VI that shows how you are executing this .pps slideshow?
It is hard to give you an answer on how to stop it if we don't have any idea of how you started it.
02-10-2011 12:31 PM
I need some block or command to stop the execution of the slideshow
02-10-2011 12:35 PM
This one is part of the examples that labview provides... and works fine
02-10-2011 12:40 PM
But I still need to stop the execution of the slide show in a certain way
02-10-2011 01:08 PM
Go back to the wire that comes out of the Open node. Right click and select Create Method. That will allow you to create a method on the application class. There is a method called Quit.
As long as you don't allow your VI to finish and close the reference to the application, you can use that method when you need to in order to quit powerpoint.
02-10-2011 01:18 PM
Thanks!!!