home *** CD-ROM | disk | FTP | other *** search
- *:*********************************************************************
- *:
- *: Program: TXLABELS.PRG
- *:
- *: System: Texas Associated Software Laser Library
- *: Author: Jose E. Lopez, Jr.
- *: Copyright (c) 1991, Texas Associated Software - Red Oak, TX
- *:
- *:*********************************************************************
-
- txinit()
- txreset()
-
- _company = "Texas Associated Software"
- _address1 = "523 La Cresta Drive"
- _address2 = "Red Oak, TX 75154"
- _phone = "(214) 617-5260"
-
- _customer = "Customer Name"
- _caddress1 = "Customer Address"
- _caddress2 = "Customer City/State"
-
- FOR I = 1 TO 60 STEP 10
- txcolbox( I, 01, 39, 10, 1)
- txcolbox( I, 41, 39, 10, 1)
- NEXT
-
- FOR I = 1 TO 60 STEP 10
- txcolprint( I , 01, .T., _company)
- txcolprint( I , 41, .T., _company)
- txcolprint( I + 1, 01, .F., _address1)
- txcolprint( I + 1, 41, .F., _address1)
- txcolprint( I + 2, 01, .F., _address2)
- txcolprint( I + 2, 41, .F., _address2)
-
- txcolprint( I + 6, 15, .T., _customer)
- txcolprint( I + 6, 55, .T., _customer)
- txcolprint( I + 7, 15, .F., _caddress1)
- txcolprint( I + 7, 55, .F., _caddress1)
- txcolprint( I + 8, 15, .F., _caddress2)
- txcolprint( I + 8, 55, .F., _caddress2)
- NEXT
-
- txclear()
-
- *: EOF: TXLABELS.PRG