Is it possible to search an Outlook folder with Ctrl-F?

18

2

I've got CtrlF burned into my brain and hands to do a search. Outlook makes you use CtrlE because CtrlF does a forward. But when composing an email, CtrlF initiates a find.

Assuming I'm OK giving up CtrlF to forward an email, can I somehow get CtrlF to initiate a search in a given folder?

Matthew

Posted 2011-03-15T19:40:40.677

Reputation: 2 450

Don't think so... – Zeke Hansell – 2011-03-15T19:54:44.737

1You can do ctl-shift-f to get the advanced find... – Zeke Hansell – 2011-03-15T19:57:41.550

@Zeke - not bad, not bad... If you do this as an answer rather than a comment then I'll accept it. – Matthew – 2011-03-15T19:59:49.223

Answers

9

You could try this link it won't let you map ctrlf but you could make altf work.

Or as I said above - you could use ctrlshiftf

Zeke Hansell

Posted 2011-03-15T19:40:40.677

Reputation: 482

6

If you are willing to use AutoHotKey, the following macro will make ctrlf work like ctrle.

#IfWinActive, ahk_class rctrl_renwnd32
^f::Send, {CtrlDown}e{CtrlUp}

For me I wanted it to find text inside the email, so I mapped mine as follows:

#IfWinActive, ahk_class rctrl_renwnd32
^f::Send, {CtrlDown}o{CtrlUp}{AltDown}hfd{AltUp}

Leigh Riffel

Posted 2011-03-15T19:40:40.677

Reputation: 1 646

This AutoHotKey tip is confusing. How or why would it work only on Outlook? – Jari Turkia – 2019-08-13T08:02:41.293

@JariTurkia The first line is making sure the active window is one we want to do the macro on. You are right that it could be written more clearly to show that in the code and/or comments. – Leigh Riffel – 2019-08-14T13:41:04.247