home *** CD-ROM | disk | FTP | other *** search
- /*******************************************************************
-
- Turbo Prolog Toolbox
- (C) Copyright 1987 Borland International.
-
- Demo of screen handler
- Entering names and addresses for a mailing list
-
- (In order to run this program, you must define an appropriate
- screen layout and store the corresponding screen definition
- file in XMAIL.SCR.)
- *******************************************************************/
-
- include "hndbasis.pro"
-
- GOAL
- consult("xmail.scr"),
- createwindow(on),
- makestatus(112," Fill out the fields"),
- scrhnd(on,_),
- clearwindow,
- value("FirstNames",FName),
- value("LastName",LName),
- value("Street",Street),
- value("City",City),
- value("State",State),
- value("Tel",Tel),
- value("ZipCode",Zip),
- value("Discount",Discount),nl,nl,
- write("+---------------------------------------------------------------"),nl,
- write( FName," ",LName,"\n",Street,"\n",City,"\n",State,"\n"),nl,
- write("Your reference number will be your telephone number: ",Tel),nl,
- write("You have been granted ",Discount,"% discount."),nl,
- write("+---------------------------------------------------------------").