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

    Popup window that remains 'always on top'

    I want to know how to create a popup window (or a floating child window) from my application which always remains on top yet is floating and can be moved around/minimized. Even if I spawn other applications, this popup should remain on top. If the user doesn't want it to obstruct his view, he can collapse it to a small bar, like the photoshop popup windows. Another thing, I should be able to create a toolbar in this window, so I get a minimizable floating toolbar. Any other way to do this would also do.
    Any ideas?


  2. #2
    Guest

    Re: Popup window that remains 'always on top'

    Did you try CreateWindowEx() with WS_EX_TOPMOST style? It should work.


  3. #3
    Join Date
    May 1999
    Posts
    69

    Re: Popup window that remains 'always on top'

    I'll try it, just tell me... can I work with other windows while this is displayed, and will it still remain topmost? Another thing, do you know how I can 'collapse' it to a bar?


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