Jul 17, 2001 #1 hankins Programmer Jul 17, 2001 22 GB does anyon1 know the vb6 command that makes the screen turn off (goin to susspend mode, or just go black) if so can u tell me how pls thanx
does anyon1 know the vb6 command that makes the screen turn off (goin to susspend mode, or just go black) if so can u tell me how pls thanx
Jul 17, 2001 #2 MrMoocow Programmer May 19, 2001 380 US I don't think that is possible. Upvote 0 Downvote
Jul 17, 2001 #3 strongm MIS May 24, 2001 20,149 GB Going into suspend mode is easy: Private Declare Function SetSystemPowerState Lib "kernel32" (ByVal fSuspend As Long, ByVal fForce As Long) As Long Call SetSystemPowerState(True, True) WARNING: Any power-managed devices will be shut down by this method, e.g. any USB device that is drawing power from the USB port... Upvote 0 Downvote
Going into suspend mode is easy: Private Declare Function SetSystemPowerState Lib "kernel32" (ByVal fSuspend As Long, ByVal fForce As Long) As Long Call SetSystemPowerState(True, True) WARNING: Any power-managed devices will be shut down by this method, e.g. any USB device that is drawing power from the USB port...
Jul 18, 2001 Thread starter #4 hankins Programmer Jul 17, 2001 22 GB thanx 4 that strongm, but could u please give me some more information about how i do that and how 2 set itup thanx Upvote 0 Downvote
thanx 4 that strongm, but could u please give me some more information about how i do that and how 2 set itup thanx