OBS: download the application please visit www.mrbool.com/player
Author: Kusnassriyanto S Bahri
Title: Delphi for Beginner – P7
Duration: 15:36 min
Description: Delphi is one of the most used development tools for desktop application. This video tutorial is perfect for beginner Delphi programmers and covers the fundamental elements of development application with Delphi. Units are individual source code modules in Delphi. Each unit is stored in it own file and compiled separately. Units allow you to divide large programs into modules that can be edited separately, create libraries that you can share among programs, or distribute libraries to other developers without making the source code available. Function and procedures are an important part of any programming language, and Delphi is no exception. You can create a procedure or function and call from different locations in program.
This chapter will talk about the Units, Procedures and Functions. It shows you how to create functions and procedure inside your own units and call them from another application. It also covers parameters and overload procedure and functions.