.NET
taskbar.txt
Associated article: Converting MFC Toolbars into Taskbars
Tags: .NET Tools
Published source code accompanying the article by Mark Janczura in which he shows you how to undock a taskbar from the shell, giving users the option of docking the taskbar to the Windows 95 shell or to the application window. Also see TASKBAR.ZIP.
_Converting MFC Toolbars into Windows 95 Taskbars_
by Mark Janczura
Listing One
CFloatingFrame* CMainFrame::CreateFloatingFrame(DWORD dwStyle)
{
CFloatingFrame* pFrame = NULL;
ASSERT(m_pFloatingFrameClass != NULL);
pFrame = (CFloatingFrame*)m_pFloatingFrameClass->CreateObject();
if (pFrame == NULL)
AfxThrowMemoryException();
ASSERT_KINDOF(CFloatingFrame, pFrame);
if (!pFrame->...


