vba - Get control of the Excel 2013 Status Bar -


i'm writing vba macro , takes time run. in every step want inform user object processed. therefor want write status bar:

application.displaystatusbar = true application.statusbar = true application.statusbar = "current item: " + objname doevents 

but message never shown. "ready" shown. statusbar property false. application.statusbar says: property returns false if microsoft excel has control of status bar.

so how can control of status bar?


Comments

Popular posts from this blog

php - How can an email be returned from Stripe Checkout? -

SQL php on different pages to Insert (mysqli) -

linked list - Get the index of the Node in a LinkedList which contains the given value in java -