Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
krassi69
 
Posts: n/a
Default Excel can not display 2 windows in taskbar

I have MS Excel 2000 installed on Windows NT 4.0 Workstation SP6a. I made
the following setting in Excel: Tools / Options / View / Windows in Taskbar -
checked. But when I open 2 files with Excel they appear in one window. I
would like to open 2 files with Excel with 2 windows in taskbar. I made
detect and repair of Excel. Please help me !
  #2   Report Post  
Dave Peterson
 
Posts: n/a
Default

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

krassi69 wrote:

I have MS Excel 2000 installed on Windows NT 4.0 Workstation SP6a. I made
the following setting in Excel: Tools / Options / View / Windows in Taskbar -
checked. But when I open 2 files with Excel they appear in one window. I
would like to open 2 files with Excel with 2 windows in taskbar. I made
detect and repair of Excel. Please help me !


--

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 2003 FAILS, but Excel 2000 SUCCEEDS ??? Richard Excel Discussion (Misc queries) 2 May 13th 23 11:46 AM
Opening DBF files with Excel 2003 via Windows Explorer ? David Purdy Setting up and Configuration of Excel 2 May 3rd 06 09:21 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
How do I display records using a key field in Excel? Vic from Texas Excel Worksheet Functions 1 March 1st 05 10:16 PM
where Can I find the download for excel viewer for windows me Stevens Excel Discussion (Misc queries) 1 February 14th 05 08:57 PM


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