Activating a particular outlook pane

  • Thread starter Thread starter R Avery
  • Start date Start date
R

R Avery

I have an addin which often sets the ActiveExplorer.CurrentFolder to a
particular folder, but when i do that, the Folder TreeView pane is
always the pane with focus, and I would like to set the focus to the
pane wiht the list of emails. Is there anyway to do this?
 
(puzzled as to why my previous reply wasn't posted; here I go again)

Outlook's object model offers no native way to do this, but I tried using
the VBA SendKeys procedure in a macro mapped to a command bar button, and
this worked:

SendKeys "{TAB}"
 
Back
Top