Основные навыки работы с MFC

Страницы работы

11 страниц (Word-файл)

Содержание работы

Санкт-Петербургский Государственный

Политехнический Университет.

 


Факультет Технической Кибернетики.

Кафедра: САиУ.

Отчет

Дисциплина: ТТП

Тема: лабораторная работа №4

Выполнил:

Стд. гр. 2082/1

Малания Г. Р.

_____________________

Проверил:

Асс. кафедры САиУ

Хлопин С.В.

_____________________

 

Санкт-Петербург, 2005г.

 
 


1. Техническое задание:

Вариант 10 Task4

2. Текст программы:

Main.cpp

#include "StdAfx.h" //MFC standart libraries

#include "DlgWnd.h"

#include "MainWnd.h"

class CMyApp : public CWinApp //Creating windows application

{

public:

CMyApp(); //Default constructor

virtual BOOL InitInstance();//standart init.

};

CMyApp::CMyApp() //Constructor of Windows app class

{

}

BOOL CMyApp::InitInstance() //Standart init

{

m_pMainWnd=new CMainWnd();//Pointer to window class

ASSERT(m_pMainWnd);//Cheking errors

m_pMainWnd->ShowWindow(SW_SHOW);//Show window

m_pMainWnd->UpdateWindow();//UpdateWindow

return TRUE;//Say that's ok

};

CMyApp theApp;

StdAfx.h

#ifndef __StdAfx211____

#include "resource.h"        //Resource file

#include <afxwin.h>         // MFC core and standard components

#include <math.h>            //math lib

#include <afxext.h>         // MFC extensions

#include <afxdtctl.h>        // MFC support for Internet Explorer 4 Common Controls

#include <afxcmn.h>                // MFC support for Windows Common Controls

struct data

      {

      double A11;

      double A12;

      double A13;

      double A14;

      double A21;

      double A22;

      double A23;

      double A24;

      double B1;

      double B2;

      double B3;

      double B4;

      double AM;

      double HM;

      double TAU;

      double U0K;

      double U0B;

      double A0;

      double B0;

      int S0;

      int S1;

      };

#define __StdAfx211____

#endif

resource.h

//{{NO_DEPENDENCIES}}

// Microsoft Developer Studio generated include file.

// Used by resource.rc

//

#define IDR_MENU                        103

#define IDD_OPTIONS                     107

Похожие материалы

Информация о работе