Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any way to get excel application status bar text?

enter image description here

Any answer would be appreciated.

share|improve this question
which langauage did you actually want to ask this in? – brettdj Dec 25 '12 at 11:15
VSTO Project of visual studio. Language c# – Tushar Chhabhaiya Dec 25 '12 at 11:34

2 Answers

up vote 5 down vote accepted

I'm definitly not sure but you can try like this;

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

Returns or sets the text in the status bar.

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

share|improve this answer

Try

.LogAction "New Status"

or

LOG_Handler.LogAction "New Status"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.