Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
When I try to open Powerpoint using a commandbutton I get
a "Run-Time Error". Here's the Code. Can someone help me with this, Thanks: Private Sub CommandButton1_Click() callppt End Sub Sub callppt() x = Shell("C:\Program Files\Microsoft Office\Office\POWERPNT.EXE") Dim pptApp As Object Set pptApp = CreateObject("Powerpoint.Application") pptApp.Visible = True pptApp.Presentations.Open Filename:="U\DATA\POWER\Learning.ppt" |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is the code exactly as you show it, as we are getting wrap around.
Try this alternative Private Sub CommandButton1_Click() callppt End Sub Sub callppt() Dim pptApp As Object Set pptApp = CreateObject("Powerpoint.Application") pptApp.Visible = True pptApp.Presentations.Open _ Filename:="U\DATA\POWER\Learning.ppt" I have lost the shell command as it seems totally superfluous. -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Bert" wrote in message ... When I try to open Powerpoint using a commandbutton I get a "Run-Time Error". Here's the Code. Can someone help me with this, Thanks: Private Sub CommandButton1_Click() callppt End Sub Sub callppt() x = Shell("C:\Program Files\Microsoft Office\Office\POWERPNT.EXE") Dim pptApp As Object Set pptApp = CreateObject("Powerpoint.Application") pptApp.Visible = True pptApp.Presentations.Open Filename:="U\DATA\POWER\Learning.ppt" |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I put in the code as you suggested and I still get Run
Time Error which says the "PowerPoint Can not open the File" Do you know why this is happening? -----Original Message----- Is the code exactly as you show it, as we are getting wrap around. Try this alternative Private Sub CommandButton1_Click() callppt End Sub Sub callppt() Dim pptApp As Object Set pptApp = CreateObject("Powerpoint.Application") pptApp.Visible = True pptApp.Presentations.Open _ Filename:="U\DATA\POWER\Learning.ppt" I have lost the shell command as it seems totally superfluous. -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Bert" wrote in message ... When I try to open Powerpoint using a commandbutton I get a "Run-Time Error". Here's the Code. Can someone help me with this, Thanks: Private Sub CommandButton1_Click() callppt End Sub Sub callppt() x = Shell("C:\Program Files\Microsoft Office\Office\POWERPNT.EXE") Dim pptApp As Object Set pptApp = CreateObject("Powerpoint.Application") pptApp.Visible = True pptApp.Presentations.Open Filename:="U\DATA\POWER\Learning.ppt" . |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Well that presumably means that the file does not exist.
When I tried it with a file that did exits, it worked fine. -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Bert" wrote in message ... I put in the code as you suggested and I still get Run Time Error which says the "PowerPoint Can not open the File" Do you know why this is happening? -----Original Message----- Is the code exactly as you show it, as we are getting wrap around. Try this alternative Private Sub CommandButton1_Click() callppt End Sub Sub callppt() Dim pptApp As Object Set pptApp = CreateObject("Powerpoint.Application") pptApp.Visible = True pptApp.Presentations.Open _ Filename:="U\DATA\POWER\Learning.ppt" I have lost the shell command as it seems totally superfluous. -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Bert" wrote in message ... When I try to open Powerpoint using a commandbutton I get a "Run-Time Error". Here's the Code. Can someone help me with this, Thanks: Private Sub CommandButton1_Click() callppt End Sub Sub callppt() x = Shell("C:\Program Files\Microsoft Office\Office\POWERPNT.EXE") Dim pptApp As Object Set pptApp = CreateObject("Powerpoint.Application") pptApp.Visible = True pptApp.Presentations.Open Filename:="U\DATA\POWER\Learning.ppt" . |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Thanks, I got it to work!!! -----Original Message----- Well that presumably means that the file does not exist. When I tried it with a file that did exits, it worked fine. -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Bert" wrote in message ... I put in the code as you suggested and I still get Run Time Error which says the "PowerPoint Can not open the File" Do you know why this is happening? -----Original Message----- Is the code exactly as you show it, as we are getting wrap around. Try this alternative Private Sub CommandButton1_Click() callppt End Sub Sub callppt() Dim pptApp As Object Set pptApp = CreateObject("Powerpoint.Application") pptApp.Visible = True pptApp.Presentations.Open _ Filename:="U\DATA\POWER\Learning.ppt" I have lost the shell command as it seems totally superfluous. -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Bert" wrote in message ... When I try to open Powerpoint using a commandbutton I get a "Run-Time Error". Here's the Code. Can someone help me with this, Thanks: Private Sub CommandButton1_Click() callppt End Sub Sub callppt() x = Shell("C:\Program Files\Microsoft Office\Office\POWERPNT.EXE") Dim pptApp As Object Set pptApp = CreateObject("Powerpoint.Application") pptApp.Visible = True pptApp.Presentations.Open Filename:="U\DATA\POWER\Learning.ppt" . . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Error message When running Macros on MS excel 2002 | Excel Programming | |||
Error when running macro in Excel | Excel Programming | |||
Run-time error '1004' running to excel objects at once | Excel Programming | |||
Automation error running an excel add-in | Excel Programming | |||
KERNEL32.DLL error after running EXCEL Macro | Excel Programming |