Click here to Skip to main content
15,867,686 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

 
QuestionSwitch back taskbar icon Pin
_Flaviu16-Jan-18 23:32
_Flaviu16-Jan-18 23:32 
QuestionThis is not working for me? Pin
Swatto8618-May-14 11:36
Swatto8618-May-14 11:36 
GeneralMy vote of 5 Pin
Keanu L30-Nov-12 13:17
Keanu L30-Nov-12 13:17 
Newssumthing missing Pin
addy80823-Apr-07 3:09
addy80823-Apr-07 3:09 
GeneralVC++ Code to add application icon to the Task Manager Pin
Smitha Rao27-Sep-06 4:03
Smitha Rao27-Sep-06 4:03 
GeneralRe: VC++ Code to add application icon to the Task Manager Pin
hari_honey19-Aug-08 19:53
hari_honey19-Aug-08 19:53 
Questionalt+tab Pin
Anonymous12-Sep-05 1:41
Anonymous12-Sep-05 1:41 
AnswerRe: alt+tab Pin
Torres O.19-Jan-06 12:26
Torres O.19-Jan-06 12:26 
General[Message Removed] Pin
nompel6-Oct-08 9:18
nompel6-Oct-08 9:18 
AnswerDon't do that Pin
Elmue14-May-12 7:37
Elmue14-May-12 7:37 
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 
Hello

Your answer is correct but why not simply posting the code which avoids misunderstandings?

Here is the code:
http://www.codeproject.com/Messages/4250481/The-perfect-solution.aspx
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 
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 

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.