Regarding Textbox

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ysl77
    New Member
    • Oct 2007
    • 1

    Regarding Textbox

    Hi,

    I would like to create a textbox in Slide 1 and slide 2 of the powerpoint so that when I enter the data in textbox in slide 1, the data will auto appear/transfer over to textbox of slide 2. How do i do the coding?? I am using Powerpoint 2003. I know nothing about coding. So, sincerely needs your help and detailed steps. Tks lots!
  • kadghar
    Recognized Expert Top Contributor
    • Apr 2007
    • 1302

    #2
    Originally posted by ysl77
    Hi,

    I would like to create a textbox in Slide 1 and slide 2 of the powerpoint so that when I enter the data in textbox in slide 1, the data will auto appear/transfer over to textbox of slide 2. How do i do the coding?? I am using Powerpoint 2003. I know nothing about coding. So, sincerely needs your help and detailed steps. Tks lots!
    let's say you're writing code for textbox1 and you want that when textbox1 changes, textbox2 also changes, just double click on a textbox1, it'll send you to the vba editor, in some event of that text box. in the upper right corner make sure you're in the "change" event.

    This should work then:

    [CODE=vb]Private Sub TextBox1_Change ()
    TextBox2.Text = TextBox1.Text
    End Sub[/CODE]

    HTH

    Comment

    Working...