Thread: Open Workbooks
View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.programming
Paul W Smith Paul W Smith is offline
external usenet poster
 
Posts: 74
Default Open Workbooks

Thanks Gord,

I had the feeling it was not something that could be achieved in VBA.

Paul Smith



"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
You are still misreading.

Status Bar is not the TaskBar.

I think the only way is to AutoHide the Taskbar


Gord Dibben MS Excel MVP

On Tue, 16 Mar 2010 11:21:01 -0700, Gary Brown
wrote:

You're right, I did misread your question...

To turn the StatusBar off, give it a blank value...
Application.StatusBar = False

To put the StatusBar back to normal
Application.StatusBar = False

These would go in procedures. You asked your question in the
'Programming'
forum so I'm assuming you are a bit familiar with programming in VBA. ???