Click here to Skip to main content
15,885,216 members
Articles / Desktop Programming / MFC

CTrayIconPosition - where is my tray icon?

Rate me:
Please Sign up or sign in to vote.
4.67/5 (32 votes)
10 Jul 2012CPOL8 min read 276.2K   6.1K   93  
Ever wanted to know position of your tray icon? Windows supplies no API for that. This class is a compact solution that works.
// TrayFinder.h : main header file for the TRAYFINDER application
//

#if !defined(AFX_TRAYFINDER_H__879D05C5_451A_11D7_B751_00304F20BD3B__INCLUDED_)
#define AFX_TRAYFINDER_H__879D05C5_451A_11D7_B751_00304F20BD3B__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"		// main symbols

/////////////////////////////////////////////////////////////////////////////
// CTrayFinderApp:
// See TrayFinder.cpp for the implementation of this class
//

class CTrayFinderApp : public CWinApp
{
public:
	CTrayFinderApp();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CTrayFinderApp)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

// Implementation

	//{{AFX_MSG(CTrayFinderApp)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};


/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_TRAYFINDER_H__879D05C5_451A_11D7_B751_00304F20BD3B__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Web Developer
United Kingdom United Kingdom
Irek works as a C++ senior software developer.
He runs also his own small shareware bussines (He is author of few quite popular applications like: Tray Helper or Time Adjuster).

Occasionaly he posts articles to Codeguru or Codeproject. Besides C++ he likes motorcycles and paragliding.
Check out his software at: http://www.ireksoftware.com

Comments and Discussions