#1   Report Post  
jrlatt
 
Posts: n/a
Default windows in taskbar

I want to be able to have all my excel windows in the taskbar. I set that in
properties for the taskbar but when I go to tools, options and view, windows
in taskbar is not there for me to select. Has anyone had this problem? Can
someone tell me how to fix this. Thanks.


  #2   Report Post  
Dave Peterson
 
Posts: n/a
Default

Windows in taskbar is an option that was added in xl2k. What version of excel
are you using?

jrlatt wrote:

I want to be able to have all my excel windows in the taskbar. I set that in
properties for the taskbar but when I go to tools, options and view, windows
in taskbar is not there for me to select. Has anyone had this problem? Can
someone tell me how to fix this. Thanks.


--

Dave Peterson
  #3   Report Post  
Junior Member
 
Posts: 1
Default

Is there a way to make the "Windows in the Taskbar" saved as a default in office2k? It seems like I am always having to go in and recheck this after I receive a new excel file (I'm assuming the creator doesn't have this checked).
Thanks
  #4   Report Post  
Dave Peterson
 
Posts: n/a
Default

I think this is a setting for you--not the pc.

But if you open a workbook that's shared (looked for Shared in the title bar),
then there's an bug in xl2k that turns it off. (It was fixed in xl2002.)

If that's the case...

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

jfway wrote:

Is there a way to make the "Windows in the Taskbar" saved as a default
in office2k? It seems like I am always having to go in and recheck this
after I receive a new excel file (I'm assuming the creator doesn't have
this checked).
Thanks

--
jfway


--

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
Windows in Taskbar not working VT Excel Discussion (Misc queries) 3 May 31st 05 08:48 PM
How do I set up a macro to turn on Windows in Taskbar in Excel 200 David Lee - NZ Excel Discussion (Misc queries) 2 May 13th 05 12:56 PM
why do windows in taskbar go away j-dawg Excel Discussion (Misc queries) 1 February 16th 05 05:14 PM
Windows in taskbar keeps unchecking in share mode. crow919 Setting up and Configuration of Excel 2 January 25th 05 12:57 AM
Excel does not display multiple workbooks on the windows taskbar elg Excel Discussion (Misc queries) 1 January 1st 05 02:13 AM


All times are GMT +1. The time now is 01:15 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"