Click here to Skip to main content
15,884,083 members
Articles / Desktop Programming / MFC

Repositioning Windows on Multiple Monitor Systems

Rate me:
Please Sign up or sign in to vote.
2.20/5 (6 votes)
6 Aug 2007CPOL2 min read 45.8K   1.7K   14  
How to reposition Windows on multiple monitor systems.
// Multimonitor.h : Hauptheaderdatei f�r die Multimonitor-Anwendung
//

#pragma once

#ifndef __AFXWIN_H__
	#error 'stdafx.h' muss vor dieser Datei in PCH eingeschlossen werden.
#endif

#include "resource.h"		// Hauptsymbole


// CMultimonitorApp:
// Siehe Multimonitor.cpp f�r die Implementierung dieser Klasse
//

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

// �berschreibungen
	public:
	virtual BOOL InitInstance();

// Implementierung

	DECLARE_MESSAGE_MAP()
};

extern CMultimonitorApp theApp;

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
Software Developer
Germany Germany
I am living in germany and now living from programming for some Years. In my spare time I like sports as jogging, playing football (soccer) and basketball.

We must take care for our planet, because we and our family has no other. And everybody has to do something for it.

Comments and Discussions