VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Determine whether or not the screen saver is enabled.

by Anonymous (267 Submissions)
Category: Windows System Services
Compatability: Visual Basic 4.0 (32-bit)
Difficulty: Unknown Difficulty
Originally Published: Mon 14th December 1998
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Determine whether or not the screen saver is enabled.

API Declarations


Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, lpvParam As Any, ByVal fuWinIni As Long) As Long


Rate Determine whether or not the screen saver is enabled.



Dim blnActive As Boolean

' Determine whether screen saver is enabled.
Call SystemParametersInfo(SPI_GETSCREENSAVEACTIVE, vbNull, blnReturn, 0)
blnActive = blnReturn

Download this snippet    Add to My Saved Code

Determine whether or not the screen saver is enabled. Comments

No comments have been posted about Determine whether or not the screen saver is enabled.. Why not be the first to post a comment about Determine whether or not the screen saver is enabled..

Post your comment

Subject:
Message:
0/1000 characters