Windows In Taskbar

K

Ken

Even though I have Windows in Taskbar checked under Tools, Options, View, the list of several files open in Excel 2003 does not display. It only displays one file name. Ctrl + Tab will switch to the next available, but does not allow for a selection process. Any Fixes?
 
E

ElsiePOA

Are you sure there isn't a little down arrow to the right of the fil
name in the task bar? There should be. If so, click on hte arrow an
you will have a list of windows
 
D

Dave Peterson

This is a setting that's kept in the windows registry. For some reason, yours
isn't being kept.

Different versions of windows have more security about letting users write to
the registry (WinXP, IIRC is one).

Until you find the source of the problem, maybe you can just create a macro that
changes that setting.

Put the workbook with the macro in your XLStart folder and xl will open it each
time you open excel.

Option Explicit
Sub auto_open()
Application.ShowWindowsInTaskbar = True
ThisWorkbook.Close savechanges:=False
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
 
Top