Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

A dockable, pinnable and skinnable OutlookBar

0.00/5 (No votes)
31 May 2005 1  
This article is based on Ziran Lin 's Pinnable ControlBar.

Sample Image

Introduction

This idea came from Ziran Lin's article Pinnable ControlBar and Iuri Apollonio's article An Outlook98 bar-like control. I think that a dockable OutlookBar is very cool, so I wrote this article.

Using the code

  1. Copy the folder PinOutBar to your project and add the needed icons and cursor resources to your project.
  2. Add this line to your Stdafx.h:
    #include "pinoutbar\pinoutbar.h"
  3. Add the support for PinDockBar, as Ziran does in his article Pinnable ControlBar.
  4. Add this line in the OnCreate event of your main window:
    m_MyBar.m_wndOutlookBar.SetOwner(this);

    then add the message handler:

    afx_msg LRESULT OnOutbarNotify(WPARAM wParam, LPARAM lParam);
    
    ON_MESSAGE(WM_OUTBAR_NOTIFY, OnOutbarNotify)
    
    long CMainFrame::OnOutbarNotify(WPARAM wParam, LPARAM lParam)
    {
      ...
    }

OK, your project can receive the messages from OutlookBar now.

Points of Interest

I used a free UI library - AppFace to skin this OutlookBar. You may delete appface.dll simply if you do not need it.

Credit

Thanks for Ziran Lin and his article Pinnable ControlBar, Iuri Apollonio and his article An Outlook98 bar-like control. Thanks for the help of the AppFace Support Team.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here