home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / ENTRY.ZIP / FORM.DOC < prev    next >
Encoding:
Text File  |  1988-04-07  |  2.9 KB  |  104 lines

  1. FORM.BAS Instructions
  2.  
  3. FORM.BAS will perform most data entry functions to a direct access data
  4. file using a screen format file.
  5.  
  6. Format File Layout ( Sequential )
  7.  
  8. Row,Column,Prompt,Type,Size
  9. .
  10. .
  11. .
  12.  
  13. Type         Description                  Row       Column       Size
  14.  
  15. 0            Prompt Only                  1 - 24    1 - 79       0
  16.  
  17. 1            048 - 057 ( 0 - 9 )          1 - 24    1 - 79       1 - 79
  18.  
  19. 2            032 - 126 ( ' ' - '~' )      1 - 24    1 - 79       1 - 79
  20.  
  21. 3            Data is prompt               0         0            0
  22.  
  23. 4            Data is time ( hhmm )        0         0            0
  24.  
  25. 5            Data is date ( mmdd )        0         0            0
  26.  
  27. Row and column are that of the first position of the prompt; there is one
  28. blank between last position of prompt and first position of item.
  29.  
  30. Data File Layout ( Direct Access )
  31.  
  32. Data items occupy the position in the data record that they occupy in the
  33. format file. Type 1 items are padded with leading zeros, type 2 items are
  34. padded with trailing spaces, type 3 items are the length of the prompt and
  35. type 4 and 5 items are four positions each.
  36.  
  37. Special Keys
  38.  
  39. ESC          Exit program
  40.  
  41. CTRL+END     Write screen data to data file
  42.  
  43. RETURN       End data item & move to next item
  44.  
  45. CURSOR DOWN  Same as RETURN
  46.  
  47. CURSOR UP    End data item & move to previous item
  48.  
  49. BACKSPACE    Erase current character & move cursor backward one position
  50.  
  51. HOME         End data item & move to first item
  52.  
  53. END          End data item & move to last item
  54.  
  55. PAGE UP      Move backward one record & display it
  56.  
  57. PAGE DOWN    Move formard one record & display it
  58.  
  59. ---------------------------------------------------------------------------
  60.  
  61. DESIGN.BAS Instructions
  62.  
  63. DESIGN.BAS will create the format file used by FORM.BAS by reading the
  64. screen.
  65.  
  66. Special Keys
  67.  
  68. CURSOR LEFT        Move cursor left one position
  69.  
  70. CURSOR RIGHT       Move cursor right one position
  71.  
  72. CURSOR UP          Move cursor up one position
  73.  
  74. CURSOR DOWN        Move cursor down one position
  75.  
  76. CTRL+CURSOR LEFT   Move cursor to column one
  77.  
  78. CTRL+CURSOR RIGHT  Move cursor to column eighty
  79.  
  80. ESC                Write format file & exit program
  81.  
  82. ~                  Designates type 2 data entry
  83.  
  84. ^                  Designates type 1 data entry
  85.  
  86. DESIGN.BAS does not allow the entry of type 3, 4 or 5.
  87.  
  88. ---------------------------------------------------------------------------
  89.  
  90. CONVERT.BAS & CONVERT2.BAS Instructions
  91.  
  92. CONVERT.BAS will convert the direct access data file from FORM.BAS to
  93. a sequential file.
  94.  
  95. CONVERT2.BAS will convert the direct access data file from FORM.BAS to
  96. a sequential file with data items separated by commas.
  97.  
  98. ---------------------------------------------------------------------------
  99.  
  100. MENU.BAS Instructions
  101.  
  102. MENU.BAS is a generic program selection menu program.  Use DATA statements
  103. to add, change or delete programs.
  104.