![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Mar 2002
Posts: 6
|
Is it possible to disable window splitting (/Window/Split) and if so how?
(A colleague maintains that she can't get /Window/Split to respond and claims it must be disabled - this was by phone - I can't see her system directly). Thanks, wbrien |
|
|
|
|
|
#2 |
|
Board Regular
Join Date: Feb 2002
Location: Winnipeg, Manitoba, CANADA
Posts: 130
|
Try this when you open the workbook:
' Window Menu Application.CommandBars("Window").Enabled = False When you close the workbook do this: ' Window Menu Application.CommandBars("Window").Enabled = True
__________________
Thanx. |
|
|
|
|
|
#3 |
|
Board Regular
Join Date: Feb 2002
Location: Winnipeg, Manitoba, CANADA
Posts: 130
|
Or you can do the following if you only want to temp remove "Window Split":
When you open your Workbook do this: Application.CommandBars("Window").Controls("Remove &Split").Delete When you close your workbook do this: Application.CommandBars("Window").Reset
__________________
Thanx. |
|
|
|
|
|
#4 |
|
New Member
Join Date: Mar 2002
Posts: 6
|
Robb - belated thanks
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|