Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default "Windows in Taskbar" setting is lost everytime I close XL

This is Excel 2000 running on XP Pro SP2.

I want my excel docs to each have their own taskbar button instead
sharing one single one.

If I go to Tools, Options, View tab and check the checkbox for "Windows
in Taskbar" and click OK, it changes the behavior to exactly how I
want.

However, as soon as I close Excel, this setting is lost. If I close
Excel, immediately reopen it, and go back to that checkbox, it's
unchecked again. Why on earth won't it stick longer than one Excel
session?

Any ideas would be greatly appreciated.

TIA

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default "Windows in Taskbar" setting is lost everytime I close XL

Do you work with shared workbooks?

Saved from a previous post:

Is the workbook shared? (A bug in xl2k turns it off for shared workbooks.)

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

===================
If none of your workbooks are shared, then it sounds like you don't have
permission to save that setting in the windows registry.

yerk55 wrote:

This is Excel 2000 running on XP Pro SP2.

I want my excel docs to each have their own taskbar button instead
sharing one single one.

If I go to Tools, Options, View tab and check the checkbox for "Windows
in Taskbar" and click OK, it changes the behavior to exactly how I
want.

However, as soon as I close Excel, this setting is lost. If I close
Excel, immediately reopen it, and go back to that checkbox, it's
unchecked again. Why on earth won't it stick longer than one Excel
session?

Any ideas would be greatly appreciated.

TIA


--

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
excel close everytime I receive an email with lotus notes 6.5.5 sigh Excel Discussion (Misc queries) 0 May 31st 06 06:53 AM
How to determine the maximum lost? Eric Excel Discussion (Misc queries) 3 March 6th 06 09:49 PM
excel 'lost my title bar with min. restore down, close buttons' Bill Geary Excel Discussion (Misc queries) 0 July 14th 05 08:34 PM


All times are GMT +1. The time now is 11:33 AM.

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

About Us

"It's about Microsoft Excel"