Article ID: 182383 - Last Review: July 11, 2005 - Revision: 1.2

INFO: Screen Saver Command Line Arguments

System TipThis article applies to a different operating system than the one you are using. Article content that may not be relevant to you is disabled.
This article was previously published under Q182383
Expand all | Collapse all

SUMMARY

Windows communicates with Screen Savers through command line arguments. The ScrnSave.lib library handles this for Screen Savers that are written to use it, but other Win32 Screen Savers marked 4.0 or higher must handle the following command line arguments:
   ScreenSaver           - Show the Settings dialog box.
   ScreenSaver /c        - Show the Settings dialog box, modal to the
                           foreground window.
   ScreenSaver /p <HWND> - Preview Screen Saver as child of window <HWND>.
   ScreenSaver /s        - Run the Screen Saver.
In addition, Windows 95 Screen Savers must handle:
   ScreenSaver /a <HWND> - change password, modal to window <HWND>
				
<HWND> is a HWND presented on the command line as an unsigned decimal number.

MORE INFORMATION

You need to create the preview window as a child of this window. It should cover the parent's entire client area.

You need to create the password dialog box as owned by HWND if it is supplied or as owned by the foreground window if HWND is not supplied.

APPLIES TO
  • Microsoft Platform Software Development Kit-January 2000 Edition
Keywords: 
kbinfo kbscreensaver KB182383