RussellP904
New Member
- Joined
- Apr 12, 2023
- Messages
- 1
- Office Version
- 365
- Platform
- Windows
Hey,
Simple, but dumb question. I have a PowerPoint presentation that requires a lot of edits depending on service level. I created a Form window, and have all of the code in place to make the edits quickly but I am stumped on how to show the form to the creator-
I put a CommandButton on the 1st page of the presentation, and it has the following OnClick code but when it's clicked, it only selects the button (edit mode). How can I make it to where the user can click the button while PowerPoint is in edit mode, or another way to show the form?
Simple, but dumb question. I have a PowerPoint presentation that requires a lot of edits depending on service level. I created a Form window, and have all of the code in place to make the edits quickly but I am stumped on how to show the form to the creator-
I put a CommandButton on the 1st page of the presentation, and it has the following OnClick code but when it's clicked, it only selects the button (edit mode). How can I make it to where the user can click the button while PowerPoint is in edit mode, or another way to show the form?
VBA Code:
Private Sub CommandButton1_Click()
Setup.Show
CommandButton1.Select
Selection.Delete
End Sub