Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 205
Default Change Shortcut Key Programatically

Hi,

Does anyone know if you can change a macro's shortcut key programatically?

If for instance I've already assign a macro to fire on CTRL+SHIFT+E, how
could I change it to fire on say CRTL+SHIFT+T instead?

Have a good weekend

John


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Change Shortcut Key Programatically

Highlight the macro in Tools=Macro=Macros and hit the Options button.
Make the assignment there.

--
Regards,
Tom Ogilvy

"John" wrote in message
...
Hi,

Does anyone know if you can change a macro's shortcut key programatically?

If for instance I've already assign a macro to fire on CTRL+SHIFT+E, how
could I change it to fire on say CRTL+SHIFT+T instead?

Have a good weekend

John




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 205
Default Change Shortcut Key Programatically

Hi Tom,

Thanks for this. I'm aware of this manual method, but was wondering if
there is a way of doing this programatically?

Best regards

John
"Tom Ogilvy" wrote in message
...
Highlight the macro in Tools=Macro=Macros and hit the Options button.
Make the assignment there.

--
Regards,
Tom Ogilvy

"John" wrote in message
...
Hi,

Does anyone know if you can change a macro's shortcut key

programatically?

If for instance I've already assign a macro to fire on CTRL+SHIFT+E, how
could I change it to fire on say CRTL+SHIFT+T instead?

Have a good weekend

John






  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 43
Default Change Shortcut Key Programatically

Try recording a macro for this.


"John" wrote in message
...
Hi Tom,

Thanks for this. I'm aware of this manual method, but was wondering if
there is a way of doing this programatically?

Best regards

John
"Tom Ogilvy" wrote in message
...
Highlight the macro in Tools=Macro=Macros and hit the Options button.
Make the assignment there.

--
Regards,
Tom Ogilvy

"John" wrote in message
...
Hi,

Does anyone know if you can change a macro's shortcut key

programatically?

If for instance I've already assign a macro to fire on CTRL+SHIFT+E,

how
could I change it to fire on say CRTL+SHIFT+T instead?

Have a good weekend

John








  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 205
Default Change Shortcut Key Programatically

Max,

Thanks, very sensible of course! The result is this:

Sub ChangeShortCut()

Application.MacroOptions Macro:="Macro3", _
ShortcutKey:="T"

End Sub

This I guess leads to another question.............how would I go about
"reading" (printing) a list of all existing macro shortcuts?

Thanks again

John


"Max Potters" wrote in message
...
Try recording a macro for this.


"John" wrote in message
...
Hi Tom,

Thanks for this. I'm aware of this manual method, but was wondering if
there is a way of doing this programatically?

Best regards

John
"Tom Ogilvy" wrote in message
...
Highlight the macro in Tools=Macro=Macros and hit the Options

button.
Make the assignment there.

--
Regards,
Tom Ogilvy

"John" wrote in message
...
Hi,

Does anyone know if you can change a macro's shortcut key

programatically?

If for instance I've already assign a macro to fire on CTRL+SHIFT+E,

how
could I change it to fire on say CRTL+SHIFT+T instead?

Have a good weekend

John












  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Change Shortcut Key Programatically

There is no such list available.

--
Regards,
Tom Ogilvy

"John" wrote in message
...
Max,

Thanks, very sensible of course! The result is this:

Sub ChangeShortCut()

Application.MacroOptions Macro:="Macro3", _
ShortcutKey:="T"

End Sub

This I guess leads to another question.............how would I go about
"reading" (printing) a list of all existing macro shortcuts?

Thanks again

John


"Max Potters" wrote in message
...
Try recording a macro for this.


"John" wrote in message
...
Hi Tom,

Thanks for this. I'm aware of this manual method, but was wondering

if
there is a way of doing this programatically?

Best regards

John
"Tom Ogilvy" wrote in message
...
Highlight the macro in Tools=Macro=Macros and hit the Options

button.
Make the assignment there.

--
Regards,
Tom Ogilvy

"John" wrote in message
...
Hi,

Does anyone know if you can change a macro's shortcut key
programatically?

If for instance I've already assign a macro to fire on

CTRL+SHIFT+E,
how
could I change it to fire on say CRTL+SHIFT+T instead?

Have a good weekend

John












  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 43
Default Change Shortcut Key Programatically

Hi John,

Im glad that helped you, but I dont really understand what you mean about
"reading" (printing) a list of all existing macro shortcuts.

Do you mean, that you would like to know which shortcuts are already in use?

Max
"John" wrote in message
...
Max,

Thanks, very sensible of course! The result is this:

Sub ChangeShortCut()

Application.MacroOptions Macro:="Macro3", _
ShortcutKey:="T"

End Sub

This I guess leads to another question.............how would I go about
"reading" (printing) a list of all existing macro shortcuts?

Thanks again

John


"Max Potters" wrote in message
...
Try recording a macro for this.


"John" wrote in message
...
Hi Tom,

Thanks for this. I'm aware of this manual method, but was wondering

if
there is a way of doing this programatically?

Best regards

John
"Tom Ogilvy" wrote in message
...
Highlight the macro in Tools=Macro=Macros and hit the Options

button.
Make the assignment there.

--
Regards,
Tom Ogilvy

"John" wrote in message
...
Hi,

Does anyone know if you can change a macro's shortcut key
programatically?

If for instance I've already assign a macro to fire on

CTRL+SHIFT+E,
how
could I change it to fire on say CRTL+SHIFT+T instead?

Have a good weekend

John












  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Change Shortcut Key Programatically

Application.MacroOptions Macro:="DoRand", _
HasShortcutKey:=True, ShortcutKey:="Z"as an example. -- Regards,Tom
Ogilvy"John" wrote in message
...
Hi Tom,

Thanks for this. I'm aware of this manual method, but was wondering if
there is a way of doing this programatically?

Best regards

John
"Tom Ogilvy" wrote in message
...
Highlight the macro in Tools=Macro=Macros and hit the Options button.
Make the assignment there.

--
Regards,
Tom Ogilvy

"John" wrote in message
...
Hi,

Does anyone know if you can change a macro's shortcut key

programatically?

If for instance I've already assign a macro to fire on CTRL+SHIFT+E,

how
could I change it to fire on say CRTL+SHIFT+T instead?

Have a good weekend

John








Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
shortcut has change or move so this shortcut can not open bakerstreet Excel Worksheet Functions 2 April 2nd 10 01:21 PM
How do i change the shortcut key for a macro? John Boy[_2_] Excel Discussion (Misc queries) 1 December 19th 08 06:04 PM
How can I programatically change photos in one worksheet Steve Excel Discussion (Misc queries) 10 December 2nd 06 01:07 AM
How can I programatically change the language in the language bar? Roy Barr Excel Discussion (Misc queries) 0 March 14th 05 09:47 PM
Change Icon of a Shortcut with VBA? Walt Weber[_2_] Excel Programming 5 May 7th 04 06:38 AM


All times are GMT +1. The time now is 10:28 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"