home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 24 / CD_ASCQ_24_0995.iso / vrac / asciid10.zip / ASCIIDRW.HLP < prev    next >
Text File  |  1995-07-18  |  2KB  |  63 lines

  1. ASCII(American Standard Code for Information Interchage) DRAW  V. 1.0
  2. CopyRight 1995
  3.         By, Neal Goldstein
  4.  
  5. For MAXIMUM Efficiency run out of WINDOWS...
  6. For Fastest Load, Bypass your CONFIG.SYS and AUTOEXEC.BAT Files...
  7.  
  8. In This UNREGISTERED Copy Your Are Limited To ONLY 75 Characters...
  9. To Register SEE ORDER.FRM
  10.  
  11. To Make BBS Screens Look For A Later Version That Will Support ANSI Save
  12. To Make BBS Screens As Of Now, You Will Need A Program To Convert It To ANSI
  13.  
  14. To Load The Program Type "ASCIIDRW"
  15. Type The File Name In 
  16. If The File Doesn't Exist It Will Create It
  17. Else It Will Load The Drawing And Allow Further Work To Be Done To It
  18.  
  19. To Move The Current Ascii Character Use The Arrow Keys
  20.  
  21. To Change The CHR$ Character, Use The "+" Key For Up
  22.                               And The "-" Key For Down
  23.  
  24. To Change The Color, Use The "." Key For Up
  25.                      And The "," Key For Down
  26. To Change The Backround Color, Use The ">" Key For Up
  27.                                And The "<" Key For Down
  28.  
  29. To Draw The Current CHR$ Character Hit Space
  30.  
  31. To End The Drawing Hit "~" 
  32.  
  33. To Abort The Drawing Hit ESC
  34.  
  35. To Use The Drawing In Your Program Use These Routines:
  36.  
  37. CLOSE #1                                         'Close Any Open File
  38. OPEN "Name_Of_File_Saved" FOR BINARY AS #1       'Open The File
  39. LOADDRW:                                         'Begin Loop
  40. GET #1, ,CHR                                     'Get The CHR$ Character
  41. IF CHR = 999 THEN GOTO NEXTSTEP:                 'End Of File
  42. GET #1, ,X                                       'Get The X Position
  43. GET #1, ,Y                                       'Get The Y Position
  44. GET #1, ,C1                                      'Get The Color
  45. GET #1, ,C2                                      'Get The Backround Color
  46. COLOR C1, C2                                     'Set The Color
  47. LOCATE X, Y: PRINT CHR$(CHR)                     'Print The Character
  48. GOTO LOADDRW                                     'Get The Next Character
  49.  
  50. NEXTSTEP:                                        'Your Program Starts Here
  51.  
  52.  
  53.  
  54. NOT AVAILABLE IN UNREGISTERED VERSION:
  55.  
  56. If You Wish To Save The Drawing In Regular Text(No Color) Then
  57. Push "`" To End The Drawing.
  58. It Will Be Saved In Regular Text Readable By Other Programs...
  59. ****You CANNOT Reload The Text Saved File Into ASCII DRAW
  60.  
  61.  
  62.  
  63.