Got it. Alt=%
hey thr,
Private Sub Workbook_Open()
MsgBox "open"
Application.OnKey "{~}", "EnterKey"
End Sub
Sub EnterKey()
MsgBox "enter key"
Call ActiveCell.Offset(ActiveSheet.Target.Row + 1,
ActiveSheet.Target.Column)
End Sub
in the above code, enterkey is not being invoked. where should the
application.onKey assignment be done.
appreciate your inputs.
thanks
> Got it. Alt=%
>
[quoted text clipped - 7 lines]
> >
> > Thanks for any help.