J
Jerry Anderson
I have a command button on a Powerpoint slide titled "cmdExit". I have turned
off the "right click" menu, and want the application to quit when I click on
the button. I have entered the following code:
Private Sub cmdExit_Click()
With Application.Presentations("Technology Team.ppt")
.Saved = True
.Close
End With
End Sub
When I click the button, it does't do anything. What am I doing wrong?
off the "right click" menu, and want the application to quit when I click on
the button. I have entered the following code:
Private Sub cmdExit_Click()
With Application.Presentations("Technology Team.ppt")
.Saved = True
.Close
End With
End Sub
When I click the button, it does't do anything. What am I doing wrong?