Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I can't find the answer to this. I want to turn off the pageup and pagedown
function only when a combobox has been clicked. My user gets confused and hits pagedown before exiting the combobox and changes her desired choice from the combobox. Is there a way to disable it? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
see if this does what you want.
Sub disablekeys() With Application .OnKey "{PGDN}", "" .OnKey "{PGUP}", "" End With End Sub Sub enablekeys() With Application .OnKey "{PGDN}" .OnKey "{PGUP}" End With End Sub -- jb "Phyllis" wrote: I can't find the answer to this. I want to turn off the pageup and pagedown function only when a combobox has been clicked. My user gets confused and hits pagedown before exiting the combobox and changes her desired choice from the combobox. Is there a way to disable it? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Unable to pageup/pagedown/scroll in worksheet beyond 1st page | Excel Discussion (Misc queries) | |||
Disable cell reference insertion with PageUp in cell edit mode. | Excel Discussion (Misc queries) | |||
disable CTRL-pageup & pagedown | Excel Discussion (Misc queries) | |||
Disable Ctrl- PAGEUP PAGEDWN | Excel Programming | |||
Prevent PageDown | Excel Programming |