OBS: download the application please visit www.mrbool.com/player
Author: Kusnassriyanto S Bahri
Title: Delphi for Beginner – P8
Duration: 16:40 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.
Array is a collection of data with same type. Internally it resides on contiguous memory. The main advantage of array is the speed to access the elements. The disadvantage is deletion and insertion of the elements.Record is collection of data that can be different type. The element of record is called as Field. To use a record, we must declare a record type and declare variables as this type. This chapter talks about array and record. It covers declaring array and using it as parameters, static and dynamic array, single and multi dimension array, and open array parameters. It also covers declaring record and using it as parameters, accessing record fields, and record type constant.