CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 1999
    Posts
    17

    Hiding the Application in the Task Bar

    Hi,

    I would like to hide an application from being displayed in the windows task bar. Any suggestions?

    Regards

    Richard Patrick

  2. #2
    Join Date
    May 1999
    Posts
    2

    Re: Hiding the Application in the Task Bar

    A solution for this problem is to specify the extended style of window w/ WS_EX_TOOLWINDOW. You can use this as parameter for API function CreateWindowEx or any wrapper from MFC.
    This parameter specify that the window will not be in task bar.
    For more information search on MSDN



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured