PDA

View Full Version : vba sign up form



silverdigit
02-02-2015, 08:55 AM
hi, I have designed a page that lets users input their name and email; when the confirm button on this form is clicked a msgbox displays a thank you message. What I can't figure out is how to move to the next slide when user clicks OK on the msgbox button.

12785

help please

:)

John Wilson
02-02-2015, 11:26 AM
You should probably make the confirm button just unload the form and the next line of code open the message box and then


With SlideShowWindows(1).View
.GotoSlide (.CurrentShowPosition + 1)
End With