home *** CD-ROM | disk | FTP | other *** search
- unit ShowPagU;
-
- interface
- uses Crt, Def, ColorDef, FastWr;
- procedure ShowPage;
-
- implementation
-
- procedure ShowPage;
- var X,
- I,
- J: integer;
- Ch: char;
- begin
- clrscr;
- for I := 1 to LastDescription do
- FastWrite( Description[I], I, 1, Headings.Attr);
- FastWrite( 'Division', LastDescription + 1, 1, Headings.Attr);
- FastWrite( 'Sub-Division', LastDescription + 2, 1, Headings.Attr);
- FastWrite( Entry.Addressee, 1, 35, Msgs.Attr);
- FastWrite( Entry.Title, 2, 35, Msgs.Attr);
- FastWrite( Entry.Company, 3, 35, Msgs.Attr);
- FastWrite( Entry.AuxAddress, 4, 35, Msgs.Attr);
- FastWrite( Entry.MailAddress, 5, 35, Msgs.Attr);
- FastWrite( Entry.City, 6, 35, Msgs.Attr);
- FastWrite( Entry.State, 7, 35, Msgs.Attr);
- FastWrite( Entry.ZipCode, 8, 35, Msgs.Attr);
- FastWrite( Entry.Phone1, 9, 35, Msgs.Attr);
- FastWrite( Entry.Phone2, 10, 35, Msgs.Attr);
- FastWrite( Entry.Comments, 11, 35, Msgs.Attr);
- Ch := Entry.Division; I := ord(Ch);
- Ch := Entry.SubDivision; J := ord(Ch);
- FastWrite( AlphaCode[I,0], 12, 35, Msgs.Attr);
- FastWrite( AlphaCode[I,J], 13, 35, Msgs.Attr);
- end;
-
- end.
-