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? This makes me nuts!

link|improve this question

Don't think so... – Zeke Hansell Mar 15 '11 at 19:54
You can do ctl-shift-f to get the advanced find... – Zeke Hansell Mar 15 '11 at 19:57
@Zeke - not bad, not bad... If you do this as an answer rather than a comment then I'll accept it. – Matt Mar 15 '11 at 19:59
feedback

2 Answers

up vote 4 down vote accepted

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

link|improve this answer
Good article thank you. – Matt Mar 17 '11 at 13:12
feedback

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}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.