#1   Report Post  
Posted to microsoft.public.excel.misc
George Tattam
 
Posts: n/a
Default Windows in taskbar

I have a spreadsheet that whenever it is launched, uncheck's the box
"Windows in Taskbar". I re-check the box but it won't stick. The one thing
different about this file is that it is shared. Could that be the cause? Has
any one encounted the same problem?


  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Windows in taskbar

Saved from a previous post...

What version of excel are you running?

There's a bug in xl2k that shows up if you're working with shared workbooks.

If you're not using xl2k and shared workbooks, it sounds like you don't have
permission to save this setting in your windows registry.

I'd talk to my IT folks to find out if they can fix it.

but if you're running xl2k....

You could create a new workbook saved into XLStart (or put this into your
personal.xls workbook) and it'll toggle that option each time you open a
workbook.

In the ThisWorkbook module:

Option Explicit
Public WithEvents xlApp As Excel.Application
Private Sub Workbook_Open()
Set xlApp = Application
End Sub
Private Sub Workbook_Close()
Set xlApp = Nothing
End Sub
Private Sub xlApp_NewWorkbook(ByVal Wb As Workbook)
Application.ShowWindowsInTaskbar = True
End Sub
Private Sub xlApp_WorkbookOpen(ByVal Wb As Workbook)
Application.ShowWindowsInTaskbar = True
End Sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

George Tattam wrote:

I have a spreadsheet that whenever it is launched, uncheck's the box
"Windows in Taskbar". I re-check the box but it won't stick. The one thing
different about this file is that it is shared. Could that be the cause? Has
any one encounted the same problem?


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
George Tattam
 
Posts: n/a
Default Windows in taskbar

I am running xl2k, so I will try what you suggest. Thanks for your help.


"Dave Peterson" wrote in message
...
Saved from a previous post...

What version of excel are you running?

There's a bug in xl2k that shows up if you're working with shared
workbooks.

If you're not using xl2k and shared workbooks, it sounds like you don't
have
permission to save this setting in your windows registry.

I'd talk to my IT folks to find out if they can fix it.

but if you're running xl2k....

You could create a new workbook saved into XLStart (or put this into your
personal.xls workbook) and it'll toggle that option each time you open a
workbook.

In the ThisWorkbook module:

Option Explicit
Public WithEvents xlApp As Excel.Application
Private Sub Workbook_Open()
Set xlApp = Application
End Sub
Private Sub Workbook_Close()
Set xlApp = Nothing
End Sub
Private Sub xlApp_NewWorkbook(ByVal Wb As Workbook)
Application.ShowWindowsInTaskbar = True
End Sub
Private Sub xlApp_WorkbookOpen(ByVal Wb As Workbook)
Application.ShowWindowsInTaskbar = True
End Sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

George Tattam wrote:

I have a spreadsheet that whenever it is launched, uncheck's the box
"Windows in Taskbar". I re-check the box but it won't stick. The one
thing
different about this file is that it is shared. Could that be the cause?
Has
any one encounted the same problem?


--

Dave Peterson



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with Windows in Taskbar command Jim Excel Discussion (Misc queries) 2 February 27th 06 12:06 AM
Problem with WIndows in Taskbar command Jim Setting up and Configuration of Excel 0 February 24th 06 11:37 PM
Problem with Windows in Taskbar command Jim New Users to Excel 0 February 24th 06 09:14 PM
Windows in TaskBar in Excel doesn't Work the Same as in Word msander508 Excel Discussion (Misc queries) 1 September 7th 05 02:21 AM
Windows in TaskBar in Excel doesn't Work the Same as in Word Mike Excel Discussion (Misc queries) 0 September 7th 05 01:14 AM


All times are GMT +1. The time now is 09:51 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"