home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Media Share 9
/
MEDIASHARE_09.ISO
/
progmisc
/
tttdem51.zip
/
LISTDEM1.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1989-01-31
|
1KB
|
48 lines
Program ListTTT5_Demo_1;
Uses CRT, DOS, FastTTT5, WinTTT5, ListTTT5;
const
ListWidth = 60;
type
StrList = string[ListWidth];
var
MyList : array[1..30] of StrList;
Procedure Fill_MyList;
{}
begin
MyList[1] := 'Erica';
MyList[2] := 'Alison';
MyList[3] := 'Barbara';
MyList[4] := 'Sarah';
MyList[5] := 'Katy';
MyList[6] := 'Janice';
MyList[7] := 'Susan';
MyList[8] := 'Serita';
MyList[9] := 'Anne';
MyList[10] := 'Michelle';
MyList[11] := 'Theresa';
MyList[12] := 'Shirley';
MyList[13] := 'Sue';
MyList[14] := 'Marianne';
MyList[15] := 'Wilma';
MyList[16] := 'Beatrice';
MyList[17] := 'Regina';
MyList[18] := 'Sudofed';
MyList[19] := 'Trojan';
MyList[20] := 'Whip';
end; {of proc Fill_MyList}
begin
Fill_MyList;
ClrScr;
Show_List(MyList,ListWidth,20);
ClearText(1,1,80,25,white,black);
WriteAT(1,1,white,black,'Run DemoTTT.exe for the main demo program');
WriteAT(1,2,white,black,'TechnoJock''s Turbo Toolkit v5.0');
GotoXY(1,5);
end.