Download as ppt, pdf, or txt
Download as ppt, pdf, or txt
You are on page 1of 11

Borland DELPHI

Softest way towards Windows Programming


What is Delphi ?
 Delphi is a high-level, compiled, strongly typed language that
supports structured and object-oriented design.

 Its benefits include easy-to-read code, quick compilation, and the


use of multiple unit files for modular programming.

 Using Delphi you can easily create self-contained, user friendly,


highly efficient Windows applications in a very short time - with a
minimum of manual coding.

 Powerful and easy to use tool for generating standalone graphical


user interface (GUI) programs.
The Delphi IDE
Integrated Development Environment
Delphi IDE comprises a number of separate windows which include

1. The menus, toolbars

2. The Component Palette

3. Form window (optional)

4. the Code Editor window

5. The Object Inspector

6. The Object TreeView


Insight
Menus, Toolbars
Component Palette
Form
Code Editor Window
Object Inspector
Object TreeView
Platform and tool
 Borland Kylix Linux
 Borland Delphi Windows
First Program
 Program: Write a Program to Display ‘Hello
World’.
-first lets see what is our requirement.
- We need a button on our GUI first.

- On click of the button write an onclick event (on

click method) to display ‘Hello World’.

Lets write the code on Delphi IDE.

You might also like