Click here to Skip to main content
15,860,972 members
Articles / Desktop Programming / Win32
Article

Turn off laptop monitor and lock the system

Rate me:
Please Sign up or sign in to vote.
2.33/5 (5 votes)
25 Jul 2008CPOL1 min read 42.8K   993   18   3
simple code to replace the win+L hotkey

Introduction

I use the Thinkpad laptop for my research work. Usually, I keep it working in the night for the simulation work. Therefore, when I wake up at the next morning, I can analyze the results immediately. I need to lock the WinXP system and turn off the monitor when I leave the laptop. Then I write this program to help me. It is more convenient to use than the traditional way (Win+L hotkey to lock the system and turn off monitor through power schemes).

Code explanation

The code is very simple.

First, turn off the monitor by using SendMessage function. You can find more introduction about it from this article.

// Turn off monitor
    
Sleep(500); // Eliminate user's interaction for 500 ms
    
SendMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, (LPARAM) 2);

Second, use LockWorkStation function to lock the system.

LockWorkStation(); 

Third, the LockWorkStation function requires Windows Vista, Windows XP, or Windows 2000 Professional. To compile the program successfully, we need to add the following macro in the StdAfx.h.

#define _WIN32_WINNT 0x0500
This program is very simple yet very useful. It keeps your task running on the laptop while turns off the monitor for saving energy and protects the laptop from unauthorized use.

Reference

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Beihang University
China China
http://sites.google.com/site/fangvv

Comments and Discussions

 
Praisethank you very much Pin
Member 1564270419-May-22 6:16
Member 1564270419-May-22 6:16 
GeneralRemove intermediate files from source archive Pin
aroth8227-Jul-08 19:14
aroth8227-Jul-08 19:14 
GeneralYou shouldn't broadcast the monitor power message. [modified] Pin
Leo Davidson26-Jul-08 21:42
Leo Davidson26-Jul-08 21:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.