Friday, October 5, 2007

How to work with Type

How to work with Type

To work with Type

Recognizing Delphi programming structure – Type:

var

IDf:file of Integer;

Namef: file of string[50];

Type

Temploy=record

ID:Integer;

Name:string[50];

Salary:Real;

end;

var

rec:Temploy;

NameList:file of Temploy;

No comments: