Windows In Taskbar

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top