home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a070 / 3.ddi / FOXPRO / GOODIES / FOXCOLOR.PRG < prev    next >
Encoding:
Text File  |  1990-05-14  |  1.5 KB  |  32 lines

  1. *:*********************************************************************
  2. *:
  3. *:        Program: FOXCOLOR.PRG
  4. *:
  5. *:         System: Change the color of your FoxPro sign-on screen
  6. *:         Author: Fox Software, Inc.
  7. *:      Copyright (c) 1989, 1990 Fox Software, Inc.
  8. *:  Last modified: 04/29/90     13:23
  9. *:
  10. *:         Notes:    This program changes the colors of the letters
  11. *:             in the FoxPro sign-on graphic.  It uses a series
  12. *:             of fill commands to "paint" the screen in different
  13. *:             colors.  This program is for color monitors only, and
  14. *:             is designed for the default FoxPro color set.  If you
  15. *:             use a different default color set, adjust the second
  16. *:             color in the color pair of each FILL command.  Placing 
  17. *:             the line COMMAND = DO FOXCOLOR in your CONFIG.FP 
  18. *:             configuration file will automatically change your
  19. *:             sign-on screen colors upon start up.           
  20. *:
  21. *:      Documented 04/29/90 at 13:28               FoxDoc  version 2.0
  22. *:*********************************************************************
  23.  
  24. @ 5,1  FILL TO 8,16  COLOR N/B        &&  /B in each fill command       
  25. @ 9,1  FILL TO 15,8  COLOR N/B        &&  for a blue background         
  26. @ 9,10 FILL TO 15,22 COLOR B+/B        &&  (the FoxPro default)
  27. @ 9,23 FILL TO 15,35 COLOR G/B        &&  - adjust as necessary!
  28. @ 5,36 FILL TO 15,50 COLOR GR+/B    
  29. @ 9,51 FILL TO 15,63 COLOR R/B        
  30. @ 9,64 FILL TO 15,78 COLOR R+/B        
  31. @ 16,7 FILL TO 17,71 COLOR BG/B
  32. *: EOF: FOXCOLOR.PRG