G
GLHEC-BLS
I am just learning how to create userforms using VB code in PowerPoint. In
all the resources I have found on the web I have not been able to find one
that shows how to get what I create on a userform in the VB editor to show up
in a presentation. The closest example I have is this but it still does not
show during show mode in powerpoint. It does work if I hit run sub/userform
in the VB editor though. Any suggestions?? Also any insightful links for VB
beginners specific to using VB in Powerpoint is greatly appreciated. Thanks.
Private Sub CommandButton1_Click()
Image2.Picture = Image1.Picture
End Sub
Sub ShowForm()
UserForm2.Show
End Sub
all the resources I have found on the web I have not been able to find one
that shows how to get what I create on a userform in the VB editor to show up
in a presentation. The closest example I have is this but it still does not
show during show mode in powerpoint. It does work if I hit run sub/userform
in the VB editor though. Any suggestions?? Also any insightful links for VB
beginners specific to using VB in Powerpoint is greatly appreciated. Thanks.
Private Sub CommandButton1_Click()
Image2.Picture = Image1.Picture
End Sub
Sub ShowForm()
UserForm2.Show
End Sub