Click here to Skip to main content
Licence MIT
First Posted 18 Jul 2010
Views 9,236
Downloads 125
Bookmarked 11 times

Caps Lock Status Tray Application

By | 18 Jul 2010 | Article
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.

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

About the Author

ron wilson

Software Developer (Senior)
Harris Corporation
United States United States

Member

I'm your huckleberry.
 
Check out more beards here.



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralIssues PinmemberKarpov Andrey20:30 27 Dec '10  
GeneralRe: Issues Pinmemberron wilson15:05 29 Dec '10  
GeneralRe: Issues PinmemberKarpov Andrey19:52 29 Dec '10  
GeneralTip/Trick... PinmvpDave Kreskowiak18:21 17 Jul '10  
GeneralRe: Tip/Trick... Pinmemberron wilson2:41 18 Jul '10  
GeneralRe: Tip/Trick... PinmvpDave Kreskowiak9:06 18 Jul '10  
GeneralRe: Tip/Trick... Pinmemberron wilson9:30 18 Jul '10  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 18 Jul 2010
Article Copyright 2010 by ron wilson
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid