PDA

View Full Version : Details Form



Brightspark9
01-17-2016, 12:31 AM
Hi,

Is it possible to do the following in Powerpoint?

First Slide contains user details which must be completed by user,name date, id etc. (TextBox) I can do this no problem.

Last slide contains the information filled in by the user in slide 1. (certificate with name, date,id)

Thanks for any help

Brightspark9
01-17-2016, 08:11 AM
First Slide has Inputbox where the user enters details.

How do I display Inputbox entry in text box on a later slide?

Hope you can understand:)

John Wilson
01-17-2016, 10:02 AM
This is only the basis for a solution. I woul;d want to do something more complex


Private Sub TextBox1_Change()'if name=TextBox1 and last slide=3
ActivePresentation.Slides(3).Shapes(1).TextFrame.TextRange = Me.TextBox1.Text
End Sub