Студопедия
Случайная страница | ТОМ-1 | ТОМ-2 | ТОМ-3
АвтомобилиАстрономияБиологияГеографияДом и садДругие языкиДругоеИнформатика
ИсторияКультураЛитератураЛогикаМатематикаМедицинаМеталлургияМеханика
ОбразованиеОхрана трудаПедагогикаПолитикаПравоПсихологияРелигияРиторика
СоциологияСпортСтроительствоТехнологияТуризмФизикаФилософияФинансы
ХимияЧерчениеЭкологияЭкономикаЭлектроника

Work with Project Manager

Читайте также:
  1. A telephone projecting from the wall. The inspector sat down at his desk.
  2. Burton’s reanimated pet project, By Nigel Andrews
  3. Consumption, take account of, manager, state, environment, include, capital, macroeconomics, economy
  4. D.2.1 - Project management
  5. DESCRIPTION OF THE PROJECT
  6. DESCRIPTION OF THE PROJECT
  7. DESCRIPTION OF THE PROJECT

Laboratory work № 1

Using components in the IDE Delphi

Job:

1. Start Delphi

To start Delphi you can choose Start/Programs/Borland Delphi 7/Delphi 7.

 

The main elements of the screen

Find the next basic elements of the Delphi’s screen:

a) Windows of the program;

· Menus (menubar);

· Toolbar;

· The Component Palette (Visual Component Library);

b) Window of Object Inspector;

c) Window of Object TreeView;

d) Window of Form1;

e) Window of Unit1 (it is under the form’s window).

 


Close the Project

Close the project, that was created by default, without saving it and using File/ Close All.

 

Creating a new project

Create a new project, chosing File/New/Application.

In the program code of Unit1, that will appear on the screen, В появившемся программном коде модуля разберите назначение основных его частей, using comments:

unit Unit1; //This is a name of the created module – Unit1

interface //Beginning of the interface part

Uses

Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;

Type

TForm1 = class(TForm) //Describing the class of form

Private

{ Private declarations }

Public

{ Public declarations }

End;

Var

Form1: TForm1; //Object of form

implementation // Beginning of the implementation part

{$R *.DFM}

End.

Saving of all project

Save the created project in the separate directory by means of File/Save All.

 

Composition of the project

При создании проекта и его сохранении Delphi создает файлы различные по своему назначению. Откройте с помощью Проводника папку, в которую вы сохранили проект и посмотрите на созданные файлы.

 

Switching between window of the module and corresponding to it window of the form

Using the key F12 you can switch between the window of module (Unit) and corresponding to it the form window. Click on the window of the form and press the key F12.. The window of Unit will appear. Press F12 again. The window of form will appear.

 

Work with Project Manager

Close the window of form. Для открытия окна формы, добавления или удаления модулей используется Менеджер проекта. Вызовите окно формы, используя View/Project Manager.

 


Дата добавления: 2015-10-26; просмотров: 114 | Нарушение авторских прав


Читайте в этой же книге: Лабораторная работа № 2 | A Simple Calculation | Defining a Function | Creating a vector or matrix | Setting the format of a single result | Playing a Previously Saved Animation | Exercise 3. To display on a screen the value of system constantpand to set the maximal format of her displaying locally. | Finding Roots | Linear/ Nonlinear System Solving Solve Blocks | Symbolic calculations. |
<== предыдущая страница | следующая страница ==>
Laboratory task| Laboratory work № 1.2

mybiblioteka.su - 2015-2024 год. (0.006 сек.)