Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 48
Default Change the action of TAB Key

I know how to control the movement of the ENTER key, but what about the TAB
key? I want to compel the TAB key to always move DOWN. Suggestions?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 100
Default Change the action of TAB Key

Janie wrote:
I know how to control the movement of the ENTER key, but what about the TAB
key? *I want to compel the TAB key to always move DOWN. *Suggestions?


Application.OnKey "{TAB}", "xxx"

where xxx is whatever moves the cursor down, not sure about that bit.

Phil Hibbs.
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,298
Default Change the action of TAB Key

"XXX" would be the name of the sub that hitting the key calls
so

Sub StartKey()
Application.OnKey "{TAB}", "setMovement"
End Sub
Sub setMovement()
Selection.Offset(1).Select
End Sub




"Phil Hibbs" wrote:

Janie wrote:
I know how to control the movement of the ENTER key, but what about the TAB
key? I want to compel the TAB key to always move DOWN. Suggestions?


Application.OnKey "{TAB}", "xxx"

where xxx is whatever moves the cursor down, not sure about that bit.

Phil Hibbs.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 100
Default Change the action of TAB Key

"XXX" would be the name of the sub that hitting the key calls

I thought there might be one already.

Phil Hibbs.
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
Change Event duplicating action LuisE Excel Programming 4 December 26th 07 03:26 PM
Change to a Cell causes action Jordan Excel Programming 3 April 6th 06 05:15 PM
Change in action when converting to *.xla Udo Excel Programming 1 March 10th 06 10:26 AM
Cell change causes action [email protected] Excel Programming 5 March 8th 06 02:22 PM
Evaluate cells for change and then action tim Excel Programming 0 February 18th 05 08:43 AM


All times are GMT +1. The time now is 10:34 PM.

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

About Us

"It's about Microsoft Excel"