Results 1 to 18 of 18

Thread: Problem in adding picture to label in Powerpoint 2010

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #14
    VBAX Sage
    Joined
    Apr 2007
    Location
    United States
    Posts
    8,894
    Location
    OK, I was misinterpreting your point

    But your paul.pptm doesn't seem to work, and I couldn't figure out a way to pass a Shape Object to your standard module macro

    Never mind -- I got it -- nothing was happening since there was no Text Box7 on the slide -- added it and now it works, but ONLY if the objects are named the same.


    However, I did it this way ...


    Option Explicit 
    Sub IncreaseScore() 
        Dim i As Long 
         
        If IsNumeric(Me.Shapes("TextBox 7").TextFrame.TextRange.Text) Then 
            i = CLng(Me.Shapes("TextBox 7").TextFrame.TextRange.Text) 
        Else 
            i = 0 
        End If 
         
        Me.Shapes("TextBox 7").TextFrame.TextRange.Text = Format(i + 1, "#,##0") 
    End Sub
    since the objects and actions are on the slide that receives the action and that if the slide is copied for another question, the action would then go to the new slide

    I would have renamed the objects using the Selection Pane you taught me so long ago to make it easier for maintenance, but I followed the OP's path and stayed with the default names

    Another question -- does the Shape get passed to the call like that every time? I don't think I ever knew that
    Last edited by Paul_Hossler; 05-11-2015 at 03:31 PM.
    ---------------------------------------------------------------------------------------------------------------------

    Paul


    Remember: Tell us WHAT you want to do, not HOW you think you want to do it

    1. Use [CODE] ....[/CODE ] Tags for readability
    [CODE]PasteYourCodeHere[/CODE ] -- (or paste your code, select it, click [#] button)
    2. Upload an example
    Go Advanced / Attachments - Manage Attachments / Add Files / Select Files / Select the file(s) / Upload Files / Done
    3. Mark the thread as [Solved] when you have an answer
    Thread Tools (on the top right corner, above the first message)
    4. Read the Forum FAQ, especially the part about cross-posting in other forums
    http://www.vbaexpress.com/forum/faq...._new_faq_item3

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •