Link to home
Start Free TrialLog in
Avatar of sonmic
sonmic

asked on

Disable CTRL-F11

Hallo,

How can i disable the CTRL-F9?

tx
Avatar of slightwv (䄆 Netminder)
slightwv (䄆 Netminder)

This was cross posted in Oracle.  If this is not Oracle related I would like to remove that Zone.

Disable it from what app or in what way?
Avatar of sonmic

ASKER

I selected only Excel. Probably i did something wrong!
Paste this in the  Workbook WindowResize event.

Private Sub Workbook_WindowResize(ByVal Wn As Window)
    If ActiveWindow.WindowState = -4140 Then ActiveWindow.WindowState = -4137
    If ActiveWindow.WindowState = -4143 Then ActiveWindow.WindowState = -4137
End Sub

Open in new window


Sid
No problem.  The question Wizard can add zones that it might think you want.
Or better still try this

Private Sub Workbook_WindowResize(ByVal Wn As Window)
    If ActiveWindow.WindowState <> -4137 Then _
    ActiveWindow.WindowState = -4137
End Sub

Open in new window


Sid
What are you actually trying to disable? The title says Ctrl+f11 but the question Ctrl+f9?
ASKER CERTIFIED SOLUTION
Avatar of sonmic
sonmic

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
sonmic: I was waiting for you to clarify what Rorya asked in ID: 34874412????

Sid
Avatar of sonmic

ASKER

Found it myself