Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Powerpoint to Access

Status
Not open for further replies.

plutz

Technical User
Oct 4, 2003
21
US
I'm using the the following code to transfer from Access to powerpoint. How can I modify the code to close powerpoint and open access?

Private Sub SomeButtonName_Click()

Dim oApp As Object

Set oApp = CreateObject("Powerpoint.Application")
oApp.Visible = True
oApp.Presentations.Open FileName:="Full path to pps"

End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top