home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 15 / CDACTUAL15.iso / cdactual / program / basic / PICULATE.ZIP / PICULATE.DOC < prev    next >
Encoding:
Text File  |  1992-08-31  |  2.3 KB  |  69 lines

  1. PICKULATOR (C) 1991, Multisystems Development Inc., by David E. Ward Sr.
  2.  
  3. *** Complete documentation will be made available as soon as it is completed.
  4.  
  5. PICULATE.TXT is a first attempt at some documentation, please send
  6. suggestions for improvement, I'm a programmer, not a documentation expert!
  7.  
  8. This terminal emulation program is designed for use with any ASY computer  
  9. that does not have graphics ability.
  10.  
  11. This product may need modification depending on the HOST Cpu that it is
  12. connected to. In addition, all interface programs from the HOST Cpu must
  13. be programmed. (Sorry!)
  14.  
  15. Source code is included and should be studied to understand how to interface
  16. it with other computers.
  17.  
  18. This software can be used freely under the following conditions:
  19.  
  20.  . It is NOT used commercially
  21.  . It is NOT modified for re-sale.
  22.  
  23. The basic concept is that a command string sent from the HOST Cpu will 
  24. activate most or all of the graphics commands available via QuickBasic 4.5
  25.  
  26. HOST String Example:
  27.  
  28.    String Beginning
  29.      CHR$(27)+CHR$(248)
  30.    String Contents - Integer expressions seperated by commas (in most cases)
  31.    String Ending  
  32.      CHR$(249)
  33.  
  34. Example, LINE Command:
  35.    CHR$(27):CHR$(248):"8,x1,y1,x2,y2,color,box,fill,style":CHR$(249)
  36.  
  37. When this string is recieved by QB, a line is drawn at the specified 
  38. coordinates. Box, Fill and Style are numeric expressions that tell the
  39. program whether to use these features or not.
  40.  
  41. ***NOTE***
  42. A special Terminal Definition will need to be created on the HOST Cpu to 
  43. enable this to function.
  44.  
  45. This product will become available commercially at some point, however; I
  46. wanted some feedback from some of the programmers, because this is not my
  47. native language. This product will remain available as a shareware product
  48. for inspiration (hopefully!)
  49.  
  50. Please write with comments and/or suggestions to:
  51.  
  52. MULTISYSTEMS DEVELOPMENT, INC.
  53. David E. Ward Sr.
  54. 2437 Bay Area Blvd. #177
  55. Houston, Texas  77058
  56. (713) 326-4820
  57.  
  58. Donations will be cheerfully accepted, but are not required. If you find
  59. this product helpful, please write or call so I'll know that someone out
  60. there is interested.
  61.  
  62. POSSIBLE ENHANCEMENTS:
  63.  
  64. Virtual Windowing interface on Screen 12 (VGA), using mouse and ICONS
  65. Multiple COMM port Sessions
  66. Multiple FONTs
  67.  
  68.  
  69.