Show "Status Bar" type comments using VBA

K

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 = ""

Thanks KEN
 
S

Shyam Pillai

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.
 
Top