home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
1st Canadian Shareware Disc
/
1st_Canadian_Shareware_Disc_1991.ISO
/
graphics
/
greet90
/
greet90.stx
/
print.txt
< prev
next >
Wrap
Text File
|
1990-11-20
|
6KB
|
198 lines
; To use this printing module, the clipping PRINT must be preloaded somewhere
; within the calling program as clip # 80.
;
when esc
set esc off
VERIFY:
local vpg @viewpage
local dpg @drawpage
setpage @vpg,@vpg
pgetbuf 1 ;Get screen into buffer for refresh.
cfade 22,136,64,80,0 ;Putup the print menu.
;
CHOOSE:
local port "LPT1"
waitkey 4500 refresh
getkey key
if @key==chr(49) ;1
beep
set port "LPT1"
goto printout
return
endif
if @key==chr(50) ;2
beep
set port "LPT2"
goto printout
endif
if @key==chr(51) ;3
beep
set port "COM1"
goto printout
endif
if @key==chr(52) ;4
beep
set port "COM2"
goto printout
endif
if @key==chr(120)||@key==chr(88) ;x or X
beep
refresh
return
endif
goto CHOOSE
;
REFRESH:
pfade 9,1
pfree 1
setpage @vpg,@dpg
return
BEEP:
note 35,80,3
return
PRINTOUT:
if @printype=="R"
gosub recipe
return
endif
if @printype=="O"
gosub order
return
endif
return
RECIPE:
color 0,15
text 224,97 "Printing Recipe to Port "$@port$"..."
send @port "
/^\ /^\
___(^_^)___ GINGERBREAD MEN ___(^_^)___
(___ o ___) COOKIE RECIPE (___ o ___)
| o | | o |
_/ \_ Makes 30 _/ \_
(__,/^\,__) Delicious Cookies (__,/^\,__)
INGREDIENTS ----------------------------------------------------
2/3 cup shortening
1/2 cup packed brown sugar
2 teaspoons ground ginger
1 teaspoon cinnamon
1/4 teaspoon cloves or allspice
1 1/2 teaspoons salt
1 egg
3/4 cup molasses
3 cups sifted all-purpose flour
1 teaspoon baking soda
1/2 teaspoon baking powder
PREPARATION -----------------------------------------------------
1. Cream together the shortening, brown sugar, spices and salt.
Add the egg and mix thoroughly. Add the molasses and blend.
2. Sift the flour, soda and baking powder together twice. Add
to the molasses mixture and stir until blended. Chill.
3. Preheat the oven to 375 degrees. Using a third to a quarter
of the dough at a time, roll it to one-eight inch or slightly
thicker on a lightly floured pastry cloth with a flour-covered
rolling pin.
4. Cut with gingerbread man cutter or any cutter desired.
Transfer carefully to greased baking sheet and repeat with
remaining dough. Before baking, press raisins into the dough for
eyes, nose and buttons. Use half a slice of candied cherry for
mouth.
5. Place in oven and bake 8 to 10 minutes. Cool then decorate
with with frosting. Enjoy!
><
@@
@@@@
@@@@@@
@@@@@@@@
@@@@@@@@@@
@@@@@@@@@@@@
||
^^^^
HAPPY HOLIDAYS FROM SYSTEMAX COMPUTER GRAPHICS!"
waitkey 200
refresh
return
ORDER:
font 2
color 0,15
text 224,97 "Printing Order Form to Port "$@port$"..."
send @port " ________________________ +-----+
|STAMP|
________________________ | |
+-----+
________________________
SYSTEMAX Computer Graphics
201 East 87th Street
Suite 24E
New York, NY 10128
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
To request an InfoKit and DiscBrochure(TM) which describes and demon-
strates our services and the versatility of computer presentations as
powerful marketing and promotional tools, fill in the following infor-
mation or affix your business card and send to us.
[ ] Mr. [ ] Ms. [ ] Mrs. [ ] Other _______________________
Name _________________________________________________________________
Title ________________________________________________________________
Company ______________________________________________________________
Address ______________________________________________________________
City _______________________________ State ______ Zip ______________
Phone (______) ___________________ FAX (______) ____________________
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
The DiscBrochure(TM) requires an EGA color monitor and hard disk to run.
Please choose the diskette format you prefer for the DiscBrochure(TM):
[ ] 5-1/4 inch, High-Density
[ ] 5-1/4 inch, Low-Density
[ ] 3-1/2 inch, Low-Density
MAIL... Fold this sheet accordian-style by folding the top portion away
from you and the bottom portion up toward you. Be sure the Systemax
address is facing out. Staple or tape both ends of the folded form and
affix proper postage.
FAX/PHONE/E-MAIL... You may also Fax your request form to 212/369-3103
24-hours a day. Phone us at 212/348-8756 or contact us via CompuServe
(ID# 71511,1375) to request an InfoKit and to answer any of your
questions."
waitkey 200
refresh
return