Consulting

Results 1 to 4 of 4

Thread: How to avoid the duplication of the display concerning the scoreboard?

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    VBAX Newbie
    Joined
    Nov 2020
    Posts
    2
    Location

    How to avoid the duplication of the display concerning the scoreboard?

    Good morning.
    I am using Microsoft Powerpoint 2013 Macro Enabled Presentation.
    I would like to display this.
    Capture.jpg
    But when I use the slide show mode, i get this.
    Captureé.jpg
    Do you know why?

    Here is my code:
    Option Explicit
    Sub Label1Plus1()
    Label1.Caption = (Label1.Caption) + 1
    End Sub
    Sub Label1Minus1()
    Label1.Caption = (Label1.Caption) - 1
    End Sub
    Sub Label1Reset()
    Label1.Caption = 0
    End Sub
    Sub Label2Plus1()
    Label2.Caption = (Label2.Caption) + 1
    End Sub
    Sub Label2Minus1()
    Label2.Caption = (Label2.Caption) - 1
    End Sub
    Sub Label2Reset()
    Label2.Caption = 0
    End Sub
    Sub ResetandExit()
    Label1.Caption = 0
    Label2.Caption = 0
    ActivePresentation.SlideShowWindow.View.Exit
    End Sub
    Attached Files Attached Files

Tags for this Thread

Posting Permissions

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