VBA - Resize Window dependent on selection

surkdidat

Well-known Member
Joined
Oct 1, 2011
Messages
582
Office Version
  1. 365
I have the following code, which should resize the window, dependent on the value in C16. However, it isnt working! Can anyone advise where its gone wrong please?

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim iMaxWidth As Integer
    Dim iMaxHeight As Integer
    Dim iStartX As Integer
    Dim iStartY As Integer
    Dim iDesiredWidth As Integer
    Dim iDesiredHeight As Integer
    Dim mType As String
    Dim trigger As Integer
    
    ActiveWindow.Zoom = 80
    mType = Range("C16").Value




        
        Select Case mType 'Set the window dimensions based on the Mtype
            Case "Standard"
                iDesiredWidth = 595
                iDesiredHeight = 382
            Case "Medium"
                iDesiredWidth = 595
                iDesiredHeight = 382
            Case "Deluxe"
                iDesiredWidth = 638
                iDesiredHeight = 392
                Columns("O").EntireColumn.Hidden = False
                Rows("18:19").EntireRow.Hidden = False
                
            Case "Super"
                Columns("O").EntireColumn.Hidden = False
                Rows("18:19").EntireRow.Hidden = False
                iDesiredWidth = 638
                iDesiredHeight = 392
            Case "Small"
                Columns("O").EntireColumn.Hidden = False
                Rows("18:19").EntireRow.Hidden = False
                iDesiredWidth = 638
                iDesiredHeight = 392
            Case "Super2"
                Columns("N:P").EntireColumn.Hidden = False
                Rows("18:20").EntireRow.Hidden = False
                iDesiredWidth = 690
                iDesiredHeight = 402
        End Select
        
        If mType <> "" Then 'A Mtype has been selected, reshape the window
            With Application
                '.WindowState = xlMaximized
                iMaxWidth = Application.Width
                iMaxHeight = Application.Height
                ' Adjust for starting point
                iMaxWidth = iMaxWidth - iStartX
                iMaxHeight = iMaxHeight - iStartY
                If iDesiredWidth > iMaxWidth Then
                    iDesiredWidth = iMaxWidth
                End If
                If iDesiredHeight > iMaxHeight Then
                    iDesiredHeight = iMaxHeight
                End If
                .WindowState = xlNormal
                .Width = iDesiredWidth
                .Height = iDesiredHeight
            End With
        End If
   
End Sub
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Have you tried STEPPING-THRU the Code (Using the F8 Key). You will need to have Both windows (Data Sheet Window and VBA Window) side-by-side as you do so.
 
Upvote 0

Forum statistics

Threads
1,214,853
Messages
6,121,935
Members
449,056
Latest member
denissimo

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