LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default I lose the windows in taskbar feature when in shared workbook.

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

ariggs wrote:

Is there anyway to keep this from happening?


--

Dave Peterson
 
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
Make merged cells a feature that can be used in a shared workbook The Happy Helper Excel Worksheet Functions 2 October 29th 06 04:49 PM
Why do I lose data in a shared workbook? trainer07 Excel Discussion (Misc queries) 0 September 7th 06 11:36 PM
If protecting a sheet I lose the autosum feature, any way around 2dcr Excel Discussion (Misc queries) 0 May 3rd 06 08:28 PM
Why does shared workbooks uncheck users Windows in Taskbar option jasonstratton Excel Discussion (Misc queries) 2 October 10th 05 03:11 PM
how do I synchronize shared workbook feature in WSS? Alchemist Excel Discussion (Misc queries) 0 July 22nd 05 11:33 AM


All times are GMT +1. The time now is 04:43 PM.

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

About Us

"It's about Microsoft Excel"