Show "Status Bar" type comments using VBA

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Using VBA Code what is the VBA code to show update comments to the user,
whilst a macro is processing in PowerPoint? In Excel the similar code is
Application.StatusBar = ""

Thanks KEN
 
Using VBA Code what is the VBA code to show update comments to the user,
whilst a macro is processing in PowerPoint? In Excel the similar code is
Application.StatusBar = ""

There's no similar capability in PPT. Bummer.
 
Status bar is off limits from the native object model support in PowerPoint.
You could make use of a modeless userform or even subvert a custom floating
commandbar for the purpose.
 
Back
Top