Forget that, I'm thinking SendKeys.
"JLGWhiz" wrote:
> Application.OnKey is all but obsolete. Just about all of the things that can
> be done with it also have built in constants available in VBA to do the same
> thing. It is sometimes useful in working with forms to simulate a keystoke
> action, since the user cannot access the worksheet if the form is modal. I
> suppose it is really a matter of design. If you design a program to work
> without it, you don't miss it. If you design the program to run with it, it
> can be useful. But it is not an essential facility to using VBA.
>
> "wal" wrote:
>
> > Excel 2003
> >
> > I've just discovered Application.OnKey. I've put several assignments
> > in a Workbook_Open Event in ThisWorkbook in PERSONAL.XLS. This serves
> > a useful purpose, but only to a limited extent.
> >
> > As far as I can tell, OnKey works to do the three following things:
> > - Disables an existing keyboard shortcut (by using "")
> > - Restores the default shortcut
> > - Adds a keyboard shortcut for a **MACRO**.
> >
> > What I can't get OnKey to do is to assign a keyboard shortcut to a
> > built-in Excel dialog or other feature. For example, I'd like to
> > assign F3 to Find Next, currently assigned to Shift-F4. (I inevitably
> > hit Ctrl-F4 and close the workbook accidentally.) Does OnKey work for
> > this? If so, how? Or is there another method?
> >
> > Thanks.
> >
> >
> >
> >
|