Start powerpoint

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I want to start up a powerpoint presentation directly from my vb.NET 2005
application,
is this possible? does anyone have a code snippet for this task?

Thx!!
 
Hi,
Try this code:
'path to ur ppt file
Dim fPath As String = "\myfolder\myfile.ppt"
System.Diagnostics.Process.Start(filePath)
 
Back
Top