Adding a progress bar to powerpoint presentation

Last update on September 27, 2009 08:38 AM by jad05
Published by aakai1056

Adding a progress bar to powerpoint presentation








To view the progress of a power point presentation, a progress bar can be displayed at the bottom of the slide show.

How to proceed


Once the slideshow done, go to Tools > Macro > Visual Basic Editor.

In the opened window, select Insert>Module and copy the below text in the blank page:

  Sub AddProgressBar() 
    On Error Resume Next 
        With ActivePresentation 
              For X = 1 To .Slides.Count 
              .Slides(X).Shapes("PB").Delete 
              Set s = .Slides(X).Shapes.AddShape(msoShapeRectangle, _ 
              0, .PageSetup.SlideHeight - 12, _ 
              X * .PageSetup.SlideWidth / .Slides.Count, 12) 
              s.Fill.ForeColor.RGB = RGB(127, 0, 0) 
              s.Name = "PB" 
              Next X: 
        End With 
End Sub 



Then go to File > Close > Return to Microsoft PowerPoint .
In the displayed page of Microsoft Powerpoint, go to:

Tools > Macro >Macros, then selectAddProcessBar and select Execute to achieve this process.
Best answers for « Adding a progress bar to powerpoint presentation » in :
[Windows 7] Adding menu bar in Explorer Show [Windows 7] Adding menu bar in Explorer Having the menu bar in the explorer The menu bar is hidden by default in Windows Explorer 7, menus such as: File, Edit, View, etc. ... no longer appear in Windows Explorer. To simply put it...
Automatic movement of an object on a Powerpoint slide ShowAutomatic movement of an object on a Powerpoint slide This trick allows the automatic movement of an object on a slide. Here's how: Putting the desired image in the background: Right click on the slide/Background, /Grounds and...
Autostart a program under Gnome ShowAutostart a program under Gnome Introduction Under Linux you can automatically start a program through example by startup scripts in /etc/init.d but it will not allow you to run graphical applications on boot from your...
Xubuntu: Change the Applications menu ShowXubuntu: Change the Applications menu Delete an entry from the menu Modify the application menu of Xubuntu Unlike Ubuntu, Xubuntu does not have a menu editor. The only way to edit the menu is to go edit text files( manually)....
Introduction to power line communications (PLC) ShowIntroduction to PLC "Power Line Communications" basically means any technology that enables data transfer at narrow or broad band speeds through power lines by using advanced modulation technology. Depending on the country, the institution and the...
NAT- Network address translation, port forwarding and port trigg ShowThe principle of NAT Network address translation or NAT was developed in order to respond to the shortage of IP addresses with IPv4 protocol (in time the IPv6 protocol will respond to this problem). In fact, in IPv4 addressing the number of...
IP Address ShowWhat is an IP address? Computers communicate over the Internet using the IP protocol (Internet Protocol), which uses numerical addresses, called IP addresses, made up of four whole numbers (4 bytes) between 0 and 255 and written in the format...