How Do I....
-
How do I open the screen saver application using the Process control? I just need to know the name of the file I need to execute it in the control so I can set the screensaver to 'None'. Thnx in advance for any help on this.
rspercy 1 + 1 = 186,440....Depending on the species.
-
How do I open the screen saver application using the Process control? I just need to know the name of the file I need to execute it in the control so I can set the screensaver to 'None'. Thnx in advance for any help on this.
rspercy 1 + 1 = 186,440....Depending on the species.
rspercy58 wrote:
How do I open the screen saver application using the Process control? I just need to know the name of the file I need to execute it in
Screensavers have the file-extension ".scr", you might want to search your computer for those. The default screensavers are in the Windows folder, but third-party screensavers usually end up in "Program Files". You can start a screensaver by passing it's path & filename to the Start-method of the Process-class, like this;
Process.Start("C:\WINDOWS\system32\ssstars.scr")
This will not change the users' default screensaver to "None", it will only start the screensaver that you specified. If you want to build your own screensaver, then check out the sample that Microsoft[^] provided. Hope this helps,
I are troll :)