Добавил:
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Скачиваний:
9
Добавлен:
02.05.2014
Размер:
1.58 Кб
Скачать
// Lab 1.cpp : Defines the class behaviors for the application.
//

#include "stdafx.h"
#include "Lab 1.h"
#include "Lab 1Dlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// Message Map ////////////////////////////////////////////////////////////////

BEGIN_MESSAGE_MAP(CLab1App, CWinApp)
	ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()


// CLab1App construction /////////////////////////////////////////////////////

CLab1App::CLab1App()
{
	// TODO: add construction code here,
	// Place all significant initialization in InitInstance
}


// The one and only CLab1App object ////////////////////////////////////////

CLab1App theApp;


// CLab1App initialization //////////////////////////////////////////////////////

BOOL CLab1App::InitInstance()
{
	// InitCommonControls() is required on Windows XP if an application
	// manifest specifies use of ComCtl32.dll version 6 or later to enable
	// visual styles.  Otherwise, any window creation will fail.
	InitCommonControls();

	CWinApp::InitInstance();

	AfxEnableControlContainer();


	CLab1Dlg dlg;
	m_pMainWnd = &dlg;
	INT_PTR nResponse = dlg.DoModal();
	if (nResponse == IDOK)
	{
		// TODO: Place code here to handle when the dialog is
		//  dismissed with OK
	}
	else if (nResponse == IDCANCEL)
	{
		// TODO: Place code here to handle when the dialog is
		//  dismissed with Cancel
	}

	// Since the dialog has been closed, return FALSE so that we exit the
	//  application, rather than start the application's message pump.
	return FALSE;
}
Соседние файлы в папке Лабораторная работа №11
  • #
    02.05.201461.57 Кб9Lab 1.aps
  • #
    02.05.20141.58 Кб9Lab 1.cpp
  • #
    02.05.2014492 б8Lab 1.h
  • #
    02.05.201468.61 Кб8Lab 1.ncb
  • #
    02.05.20149.12 Кб9Lab 1.rc
  • #
    02.05.2014910 б8Lab 1.sln
  • #
    02.05.20144.3 Кб8Lab 1.vcproj