Disable close and minimize on split screen windows

ChristineJ

Well-known Member
Joined
May 18, 2009
Messages
785
Office Version
  1. 365
Platform
  1. Windows
I use this code to split the screen and set the starting point of the cells that I want to appear on each side. Is there a way for me to add code to prevent the user from minimizing or closing either of the two windows? (The minimize, maximize, and close icons appear at the top right of each window.) There is an EXIT button on the screen that I have that I want them to use instead to close.

Code:
Sub SplitAny(Show3 As Range, Show4 As Range)
Application.ScreenUpdating = False
 
Dim wd As Double, ht As Double
   
    wd = Application.UsableWidth
    ht = Application.UsableHeight
      
    With ActiveWindow
        .WindowState = xlNormal
        .Left = 0
        .Top = 0
        .Width = wd * 1 / 2
        .Height = ht
        Application.Goto Show3, Scroll:=True
    End With
   
    With ActiveWindow.NewWindow
        .Left = wd * 1 / 2
        .Top = 0
        .Width = wd * 1 / 2
        .Height = ht
        Application.Goto Show4, Scroll:=True
    End With
Application.ScreenUpdating = True
End Sub
 

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top