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
    2

    How can I make a window over a screensaver?

    I am developing an application with VC++6.0
    My application must be shown always even though a screensaver is worked.
    How can I do that?


  2. #2
    Join Date
    May 1999
    Posts
    11

    Re: How can I make a window over a screensaver?


    When a screen saver is to be shown, The active application receives the WM_SYSCOMMAND message with the wParam parameter set to the SC_SCREENSAVE value, if the window proc does not pass this message to the DefWindowProc, the screen saver will not be shown.The detail informatin lies in :
    VC6 Msdn\Platform SDK\User Interface servics\Shell and common controls\Windows shell Api\Screen Saver Library
    But if you want to dispaly you forms upon the screen saver's view --- I don't know how to do it, sorry!



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