Click here to Skip to main content
15,867,568 members
Articles / Desktop Programming / MFC
Article

Creating an application with no taskbar icon

Rate me:
Please Sign up or sign in to vote.
4.69/5 (23 votes)
5 Jan 2000CPOL 330.7K   70   60
A simple method to create a main window that does not appear in the windows taskbar

This is a technique I first saw in Mike Blaszczak's 'stealth' program.

It is desirable sometimes to not have your application window show up in the taskbar. For instance, you may have an application resides in the system tray, and since it already has a system tray icon, having the extra icon in the taskbar is needless duplication. A simple way to create a window that will not have an icon in the taskbar is to create a separate invisible window, and have that invisible window be the parent of your applications window.

The way to do this, and still allow your application's window to remain visible, is to set the invisible window as parent in your application's PreCreateWindow override.

First, declare a window member variable in your Main Frame class:

class CMainFrame : public CFrameWnd
{
...
protected:
    CWnd m_wndInvisible;
...

Then override CMainFrame::PreCreateWindow:

BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
    if (!CFrameWnd::PreCreateWindow(cs))
         return FALSE;

     // Create invisible window
     if (!::IsWindow(m_wndInvisible.m_hWnd))
     {
        LPCTSTR pstrOwnerClass = AfxRegisterWndClass(0);
        if (!m_wndInvisible.CreateEx(0, pstrOwnerClass, _T(""), WS_POPUP,
                CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
                NULL, 0))
            return FALSE;
     }

    cs.hwndParent = m_wndInvisible.m_hWnd;

    return TRUE;
}

That's all you need to do! The invisible window will be automatically destroyed when the main application closes.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Founder CodeProject
Canada Canada
Chris Maunder is the co-founder of CodeProject and ContentLab.com, and has been a prominent figure in the software development community for nearly 30 years. Hailing from Australia, Chris has a background in Mathematics, Astrophysics, Environmental Engineering and Defence Research. His programming endeavours span everything from FORTRAN on Super Computers, C++/MFC on Windows, through to to high-load .NET web applications and Python AI applications on everything from macOS to a Raspberry Pi. Chris is a full-stack developer who is as comfortable with SQL as he is with CSS.

In the late 1990s, he and his business partner David Cunningham recognized the need for a platform that would facilitate knowledge-sharing among developers, leading to the establishment of CodeProject.com in 1999. Chris's expertise in programming and his passion for fostering a collaborative environment have played a pivotal role in the success of CodeProject.com. Over the years, the website has grown into a vibrant community where programmers worldwide can connect, exchange ideas, and find solutions to coding challenges. Chris is a prolific contributor to the developer community through his articles and tutorials, and his latest passion project, CodeProject.AI.

In addition to his work with CodeProject.com, Chris co-founded ContentLab and DeveloperMedia, two projects focussed on helping companies make their Software Projects a success. Chris's roles included Product Development, Content Creation, Client Satisfaction and Systems Automation.

Comments and Discussions

 
AnswerRe: alt+tab Pin
sam t. xu21-Apr-06 10:11
sam t. xu21-Apr-06 10:11 
AnswerRe: alt+tab problem solved Pin
Elmue14-May-12 7:29
Elmue14-May-12 7:29 
QuestionHow I can add an icon in the left superior corner? Pin
Drako LeoLim12-Jan-04 18:14
Drako LeoLim12-Jan-04 18:14 
QuestionHow I can add an icon in the left superior corner? Pin
Drako LeoLim12-Jan-04 18:13
Drako LeoLim12-Jan-04 18:13 
QuestionHow to make it in Visual Basic? Pin
Mickey_vip6-Aug-03 12:40
Mickey_vip6-Aug-03 12:40 
GeneralIncorrect icon in system dialog When Alt+Tab Pin
kimdaejeong24-Apr-03 23:31
kimdaejeong24-Apr-03 23:31 
Solution is

CMainFrame::OnCreate () {
...

HICON icon = (HICON)::GetClassLong(m_hWnd, GCL_HICON);
if(icon)
{
HWND wnd = m_wndInvisible.m_hWnd;

::SetClassLong(wnd, GCL_HICON, (LONG)icon);
::SetClassLong(wnd, GCL_HICONSM, (LONG)icon);
}

QuestionHow to Create an application(base dialog) with no taskbar icon? Pin
zhangyifei25-Nov-02 3:40
zhangyifei25-Nov-02 3:40 
AnswerRe: How to Create an application(base dialog) with no taskbar icon? Pin
LupinTaiwan17-Sep-15 19:24
LupinTaiwan17-Sep-15 19:24 
GeneralThis man is just great :) Pin
27-Mar-02 14:59
suss27-Mar-02 14:59 
General...or as they tell it in MSDN... Pin
13-Jan-02 23:14
suss13-Jan-02 23:14 
GeneralRe: ...or as they tell it in MSDN... Pin
Chris Maunder13-Jan-02 23:33
cofounderChris Maunder13-Jan-02 23:33 
GeneralRe: ...or as they tell it in MSDN... Pin
13-Jan-02 23:59
suss13-Jan-02 23:59 
GeneralRe: ...or as they tell it in MSDN... Pin
Elmue14-May-12 7:09
Elmue14-May-12 7:09 
AnswerThe perfect solution Pin
Elmue14-May-12 7:20
Elmue14-May-12 7:20 
GeneralRe: ...or as they tell it in MSDN... Pin
Anonymous22-Jul-03 20:14
Anonymous22-Jul-03 20:14 
GeneralRe: ...or as they tell it in MSDN... Pin
Anonymous22-Jul-03 20:18
Anonymous22-Jul-03 20:18 
QuestionHas anyone done this with Visual C++ 6.0? Pin
SixString29-Nov-01 19:47
SixString29-Nov-01 19:47 
AnswerRe: Has anyone done this with Visual C++ 6.0? Pin
Albert van Peppen18-Dec-02 3:03
professionalAlbert van Peppen18-Dec-02 3:03 
GeneralTop banana! Pin
Baz3-Apr-01 23:16
Baz3-Apr-01 23:16 
QuestionWhat About Console Application? Pin
12-Jan-01 12:32
suss12-Jan-01 12:32 
GeneralJava Pin
Member 1022109720-Jul-00 12:48
Member 1022109720-Jul-00 12:48 
QuestionHow do you do this in Delphi? Pin
Rick Ashford13-Apr-00 19:01
Rick Ashford13-Apr-00 19:01 
QuestionHow to avoid task being removed from task list ( in the Task Manager)? Pin
Bernd Giesen7-Apr-00 3:23
Bernd Giesen7-Apr-00 3:23 
QuestionWorking for Dialog based Apps!! The correct way? Pin
Albert van Peppen6-Apr-00 2:52
professionalAlbert van Peppen6-Apr-00 2:52 
AnswerRe: Working for Dialog based Apps!! The correct way? Pin
Martin Schmid16-Apr-00 17:57
Martin Schmid16-Apr-00 17:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.