Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
when u create a macro it gives u an option to have a shortcut key...i
it possible to have the return key as a shortcut -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
AFAIK not possible with the build-in shortcut assignment -- Regards Frank Kabel Frankfurt, Germany when u create a macro it gives u an option to have a shortcut key...is it possible to have the return key as a shortcut? --- Message posted from http://www.ExcelForum.com/ |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One way:
Public Sub test() Application.OnKey "{RETURN}", "MyReturnMacro" End Sub Public Sub MyReturnMacro() MsgBox "You pressed Return" End Sub You can put the Application.OnKey call in your Personal.xls Workbook_Open sub In article , shasta wrote: when u create a macro it gives u an option to have a shortcut key...is it possible to have the return key as a shortcut? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
macro will not run with shortcut keys | Excel Worksheet Functions | |||
macro shortcut keys don't work | Excel Discussion (Misc queries) | |||
Macro Shortcut Keys | Excel Discussion (Misc queries) | |||
Call macro - duplicate shortcut keys | Excel Programming | |||
Macro shortcut keys | Excel Programming |