Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / desktop / Win32

Caps Lock Status Tray Application

4.00/5 (1 vote)
18 Jul 2010MIT1 min read 32.6K   459  
See the state of caps lock, num lock, scroll lock in the Windows tray

Introduction

This application displays the current state of the CAPS lock, NUM lock, and SCROLL lock in a single Windows tray icon.

Background

Recently I bought a wireless keyboard that lacks any LED indication for the state of the CAPS lock and NUM lock. This is infuriatingly inconvenient, so I whipped up this little application using the Win32++ framework by David Nash.

Using the Code

The included solution and project are for Visual Studio 2008. The source should work in any development environment for Windows.

The Win32++ framework is refreshingly simple compared to MFC and a delight to work with. This application is actually a modified sample from among the dozens of working samples that come with Win32++. (I actually found it refreshing that all the samples 'just worked' right out of the zip file - with project and solution files for a handful of development environments - a rare gem in the open source world.)

The only thing I had to figure out for myself was how to get the main form to start up in the hidden state and show the tray icon without any user interaction. The trick is to set the creation style to WS_ICONIC and the extended style to something that doesn't minimize to the task bar, like WS_EX_TOOLWINDOW.

C++
void CView::PreCreate( CREATESTRUCT& cs )
{
	// This function will be called automatically by Create. It provides an
	// opportunity to set various window parameters prior to window creation.
	// You are not required to set these parameters, any parameters which
	// aren't specified are set to reasonable defaults.

	// Set some optional parameters for the window
	cs.dwExStyle = WS_EX_TOOLWINDOW;       // Extended style
	cs.style = WS_ICONIC;                  // Start up minimized
	cs.hMenu =  LoadMenu( GetApp()->GetResourceHandle(), 
			MAKEINTRESOURCE( IDM_MINIMIZED ) );
}

Points of Interest

Feel free to improve the icons; I am not an artist. Enjoy!

History

  • July 2010 - Initial submission

License

This article, along with any associated source code and files, is licensed under The MIT License