Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Disabling a screen saver
Message
From
23/04/1998 10:56:22
Ray Watson
A Certified Electronics Co
Knoxville, Tennessee, United States
 
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00093980
Message ID:
00094323
Views:
22
Hi George,

I tried the following code to test the enable/disable of the sceen saver. The last call to SystemParameterInfo returns .F. and the screen saver state is not changed.

What did I do wrong?

Thanks,

Ray

#DEFINE GETSCREENSAVEACTIVE 16
#DEFINE SETSCREENSAVER 17
DECLARE SHORT SystemParametersInfo IN WIN32API ;
INTEGER uiAction, SHORT uiParam, ;
INTEGER @pvParam, INTEGER fWinIni

lnvparm = 0
? (SystemParametersInfo(GETSCREENSAVEACTIVE,0, @lnvparm,0) # 0)

IF lnvparm = 0
liniparm = 1 && Enable Screen saver
? "Screen saver is being enabled"
ELSE
liniparm = 0 && Disable Screen Saver
? "Screen saver is being disabled"
ENDIF

? (SystemParametersInfo(SETSCREENSAVER,liniparm,0,0) # 0)
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform