Regarding Excel Status Bar

P

prasanta

Hello,

I want to change status bar text in excel using C#. Like Default its
"Ready", I want to change the status bar this text whule doing some
custom control. So, Please tell me how to change the text of Excel
Status Bar.

Thanks,
Prasanta
 
C

Chip Pearson

I don't know C#, but the code in VBA is

Application.StatusBar = "your text here"

' give control back to Excel
Application.StatusBar = False

This should be easy to translate to C#.

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top