Search notes:

Outlook Object Model: Explorer.Activate

option explicit

sub main() ' {

    dim fold as folder
    set fold = application.session.getDefaultFolder(olFolderInbox)

    dim expl as explorer
    set expl = application.explorers.add(fold)

'   expl.display
    expl.activate

end sub ' }
Github repository about-MS-Office-object-model, path: /Outlook/Explorer/activate.vb

Index