Reading Excel Application Status Bar Text

Is there a way to get the text of an Excel application status bar?

enter image description here

Any answer would be appreciated.

+6
source share
2 answers

I'm definitely not sure, but you can try like this:

Microsoft.Office.Interop.Excel.Application has the StatusBar property.

Gets or sets the text in the status bar.

This property returns False if Microsoft Excel controls the status of the bar. To restore the default status bar text, set the property to false; this works even if the status bar is hidden.

+7
source

Try

 .LogAction "New Status" 

or

 LOG_Handler.LogAction "New Status" 
0
source

All Articles