CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: Window

  1. #1
    Guest

    Window

    Can somebody tell me how to "hide" a task from showing on the task bar? I create tooltip-window ( CWnd ) in my app and do not want to confuse the user with this "unknown" task on the task-bar.



  2. #2
    Join Date
    Jul 1999
    Location
    Pasadena, CA - USA
    Posts
    351

    Re: Window

    Make sure your ShowWindow() Call includes SW_HIDE.



    Regards,

    Paul Belikian

  3. #3
    Guest

    Re: Window

    It is one of the extended styles of the CWnd Class, that has to do with tool windows, as far as I know it removes it from tab lists and task bars.


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