home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a070 / 3.ddi / FOXPRO / SAMPLE / CREDITS.PRG < prev    next >
Encoding:
Text File  |  1990-04-07  |  2.1 KB  |  58 lines

  1. * ┌─────────────────────────────────────────────────────────────────────┐ *
  2. * │  PROG NAME: CREDITS.PRG. Give credit where credit is due...         │ *
  3. * │  Copyright (c) 1989 Tech III, Inc. All rights reserved.             │ *
  4. * │  Tech III of San Pedro, California      (213) 547-2191.             │ *
  5. * │  "The bridge connecting people and technology."(tm)                 │ *
  6. * └─────────────────────────────────────────────────────────────────────┘ *
  7. DEFINE WINDOW credits FROM 00,00 TO 24,79
  8. ACTIVATE WINDOW credits
  9. TEXT
  10.  ┌───────────┐
  11.  │  CREDITS  │
  12.  └───────────┘
  13.  
  14.  PRO-DEMO is copyright (C) 1989,1990 by Tech III, Inc. of San Pedro, California.
  15.  We are dedicated to creating database and financial applications written in
  16.  languages such as FOXPRO.  You may be familiar with one of our commercial prod-
  17.  ucts: SCAN-A-LYZER!(tm) (programmers' tool), INSIDE PARTNER(tm), (for Mfr.s'
  18.  Reps), or WHO-YOU-KNOW(tm) (Mailing List / Contact Tracker + Source Code).
  19.  
  20.  As you get to know FoxPro, you can look forward to discovering a whole new
  21.  world of programming, beyond the limitations that were previously in place.
  22.  We think you'll have as much fun programming with it as we have had, while
  23.  writing Pro-Demo.
  24.  
  25.  We hope that the Pro-Demo code and interface helps you to quickly access
  26.  the possibilities created by this new language, and greatly shorten the
  27.  learning curve in putting all the great new capabilities of FoxPro to work!
  28.  
  29.  Good coding!        - Richard Grossman, President, Tech III, Inc.
  30. ENDTEXT
  31. WAIT WINDOW
  32. CLEAR
  33. TEXT
  34.  ┌───────────┐
  35.  │  CREDITS  │
  36.  └───────────┘
  37.  
  38.   SYSTEM DESIGN:            Richard Grossman
  39.                             Gil Sidhom
  40.  
  41.   PROGRAMMING:              Richard Grossman
  42.                             Gil Sidhom
  43.  
  44.   PROJECT ADMINISTRATION:   Sophie Hall
  45.                             Rob Kissner
  46.  
  47.   SAMPLE DATA AND TESTING:  Christine Guerra
  48.                             Frank DeGiorgio
  49.  
  50.   DOCUMENTATION:            Scan-A-Lyzer!
  51.  
  52.   TECHNICAL LIAISON:        Janet Walker & Brian Crites @ Fox Software
  53. ENDTEXT
  54. WAIT WINDOW
  55. RELEASE WINDOW credits
  56. RETURN
  57. * EOF
  58.