View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Halim Halim is offline
external usenet poster
 
Posts: 182
Default Including images in a tab order sequence.

Hi,

Try to use :

While your sheet protected run it:
Sub EnableTab()
Application.OnKey "{tab}", "EnabTAB"
End Sub

Sub EnabTAB()
If ActiveCell.Column < 256 Then ActiveCell.Offset(0, 1).Select
End Sub

--

Regards,

Halim


"Colinhp" wrote:

I have a protected worksheet with only four cells and an image that the user
can select with their mouse.
I want keyboard users to be able to select these same items without a mouse.
They can move between the four cells easily enough by pressing the tab key,
but how do I get the image included in the tab sequence?
Thank you.